I'm converting my skills (and a prototype app) from MS Access to ASP.NET, and as I go through self-training I have some questions on general design practices. The app I'm working on is like a "live" on-line classroom session, and will run like a closed application with fairly complex forms and relatively fixed navigation, more than like an open web-site with "standard" web pages and "go anywhere" naviation (if that's a meaningful distinction).
In Access I would sometimes expect to make a form that would have controls that I would show and hide and reposition in order to enable different functionality, in order to not make several different named forms that I would have to manage.
I'd like to get a sense of whether this general approach is also regularly used in ASP.NET. Is it a standard approach in ASP.NET to dynamically reconfigure (or completely generate) forms (in addition to dynamically loading data into them) at request time, or even to reconfigure them using javascript at the browser, in order to reduce page management overhead (multiple, similar forms) and page request delays (from full page requests/refreshes)?
Any guidance on this, and/or pointers to additional material about this specific subject, would be appreciated.
Thanks!
In Access I would sometimes expect to make a form that would have controls that I would show and hide and reposition in order to enable different functionality, in order to not make several different named forms that I would have to manage.
I'd like to get a sense of whether this general approach is also regularly used in ASP.NET. Is it a standard approach in ASP.NET to dynamically reconfigure (or completely generate) forms (in addition to dynamically loading data into them) at request time, or even to reconfigure them using javascript at the browser, in order to reduce page management overhead (multiple, similar forms) and page request delays (from full page requests/refreshes)?
Any guidance on this, and/or pointers to additional material about this specific subject, would be appreciated.
Thanks!