Asp.net C# Webform forms Generator/Builder

asp.net, c#, webforms

Solution

I'm looking for a C# based form generator system as well, and came up with the following solution:

- Use the jquery-form-builder-plugin to give a user-friendly UI to the users. This posts a JSON object to the server

- Use ASP.Net to save the JSON and render the form to the user

Handling the JSON is made easy creating an ASMX using `System.Web.Extensions` in .Net 3.5. A good series for reference with doing this is here.

Problem

I'm looking for a simple Asp.net C# Webform forms Generator/Builder Something Very simular to http://wufoo.com/form-builder/ (more basic would also be ok) but in a .Net Implemetion and local as opposed to a paid cloud servcie. Anyone know where i can find this ? This is for intergration into an existing C# Webform Application to allow staff(non developers) to easily create and store forms that they are able to then present to public users of the system. Ps I have already looked at http://frevvo.com but thier prices are retarded. Other Questions of a similar nature end up with a bunch of ASP.Net MVC answers. Just to make it clear, I'm looking for a WebForm solution as it is built on WebForms.

Original source