@inject IConfiguration cfg @{ var total = cfg.GetValue("CaptchaSeconds"); var sec = total; var session = this.Context.Session; var model = session.Get(CodeCaptchaModel.Key); if (model != null) { sec = (int)(model.ExpireDateUtc - DateTime.UtcNow).TotalSeconds; } }