Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

İ want to create a one page form but this form needs to be its own layout design regarding to my customer. İ will use tables to put labels, inputs and check boxes... There are 50 different field to fill. What is the easy way to do this. There will be only one database table and 50 column. But it is getting hard to edit all of these areas.Do ineed to use any scaff which you can recommend.( İ am using EF in my project.)

ADD ON[ Actually, i have some forms which is built in Excel. These are complex forms and have lots of fields. My customer do not want to fill these forms with excel and want to fill these forms in website. So i need to create lots of labels and input elements to create these forms. I am asking , is there any another way to carry this forms to web. I have found some solution that you can create excel templates online and let your customer fill them. But i am not sure it is the best way. Do i need to create forms manually ??

]

share|improve this question
I don't entirely understand. You need to create a custom form for each customer using your program? I suppose I would just set some flags, but at a company I used to work at we had to automatically generate an install program depending on the user. What we did was we saved the name and type of inputs we needed into a database, fetched them, and added all the controls into a ControlList object (I might be mistaken on the name) that list object handled the formatting and put them all one by one on the form. – Benjamin Danger Johnson Oct 10 '12 at 21:57
Actually, i have some forms which is built in Excel. These are complex forms and have lots of fields. My customer do not want to fill these forms with excel and want to fill these forms in website. So i need to create lots of labels and input elements to create these forms. I am asking , is there any another way to carry this forms to web. I have found some solution that you can create excel templates online and let your customer fill them. But i am not sure it is the best way. Do i need to create forms manually ?? – modulerica Oct 11 '12 at 12:03
In general, yes you need to create forms manually. You could try to write a program that parses an excel file and writes the proper xml for you, but that can get complex fast. I'd personally recommend creating the forms manually. You could create a custom control for your webform (a control with a label and a text box for example) and use that to build your page a little faster (you only need to manually add half the elements) but that will add some complexity when laying out your web form page. – Benjamin Danger Johnson Oct 11 '12 at 17:28
Thank you very much. What about using formview ? – modulerica Oct 11 '12 at 17:51

closed as not a real question by Kev Oct 11 '12 at 21:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.