Posted on: 7/22/2014 1:37:09 PM | Views : 359

I am trying to create a form builder using asp.net and webforms I am running into a problem with the view state 
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using PortalDataAccessLayer; using PortalDataObjects; using PortalFormGenerator; using System.Xml.Linq; using PortalCms.UserControls; using PortalDataObjects.Models; using System.Data; using PortalDataObjects.JSONClasses; namespace PortalCms.Account.Forms { public partial class _default : System.Web.UI.Page { PortalContext portalContext = new PortalContext(); DataAccess da = new DataAccess(); FormGenerator formGen = new FormGenerator(); List<FormStructure> formControls = new List<FormStructure>(); List<XElement> ...

Go to the complete details ...