BootstrapExtensions.Base.Form.FormExtensions.GenerateId C# (CSharp) 메소드

GenerateId() 개인적인 정적인 메소드

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