BootstrapExtensions.Base.Form.FormExtensions.GenerateId C# (CSharp) Méthode

GenerateId() private static méthode

private static GenerateId ( System.Web.Mvc.ViewContext viewContext ) : string
viewContext System.Web.Mvc.ViewContext
Résultat string
        private static string GenerateId(ViewContext viewContext)
        {
            var formCount = ((int?)viewContext.TempData["BootstrapFormCount"] ?? 0) + 1;
            viewContext.TempData["BootstrapFormCount"] = formCount;
            return "bootstrapForm" + formCount;
        }