Danny
Danny

Reputation: 2821

Large data entry pages using ASP.NET MVC

I am working on a large data entry page using the default ASP.NET MVC theme. Due to the large number of controls on the page it would be good to use a two column fieldset so the user does not need to scroll. I can't see any templates in the MVC design gallery that use a two column data entry page, they are all geared towards standard website designs. Has anyone seen any? It would be great to have templates for different data entry scenarios.

Thanks

Danny

Upvotes: 2

Views: 2227

Answers (3)

Beep beep
Beep beep

Reputation: 19161

If your issue is layout, you can lay it out in the design view first (or dreamweaver or the designer of your choice) then add the MVC specific code.

Upvotes: 0

Vikas
Vikas

Reputation: 24332

If your problem is to show all controls on single window without scrolling and may be using two columns,Right!

I have another solution for you. And that is Wizard. check out this link and this link.

Your form will look nice!

Upvotes: 0

Jon
Jon

Reputation: 4945

What you can do is create your own T4 (Text Template Transformation Toolkit) file. You can find out more here. This will give you an extra view content option in your "Add View" dialog box, generating the HTML however you've specified.

Upvotes: 1

Related Questions