I am designing a web form that allows the user to add, edit, delete and update records. The form will also have 2 subforms of related data that will be displayed in 2 datagrids.
Would I add any better scalability if I used data readers to populate the main form and subforms with data and then use a command object to call a stored proc? It involves more coding. Is this worth the effort?
In Visual Basic I liked creating unbound forms and only using the connection as needed. Most of the Microsoft .NET documentation seems geared around creating apps with datasets. Is the unbound model unnecessary for ASP.NET applications?
I am using Visual Studio #2003.
Would I add any better scalability if I used data readers to populate the main form and subforms with data and then use a command object to call a stored proc? It involves more coding. Is this worth the effort?
In Visual Basic I liked creating unbound forms and only using the connection as needed. Most of the Microsoft .NET documentation seems geared around creating apps with datasets. Is the unbound model unnecessary for ASP.NET applications?
I am using Visual Studio #2003.