Hi. It seems to me that VWD/ASP.Net 2 really does not like us to use forms, especially if you are working with Master pages and want to submit data as a form from a child page. Either some javascript is needed to fool ASP.Net about ViewState
or you are advised to use Server.Transfer, which shows the wrong URL on the page.
With such a powerful tool, this difficulty in a fundamental user input mechanism it is surprising; it seems as if it is a quietly held disadvantage of needing a Form to power the Master page. Surely we should not have to write script in .net 2 when we did not have to in ASP!
I am hoping that someone might explain a more straightforward way to use forms- ; either to submit the Master page form including elements from the child page, or how to use standard HTML forms within child pages, because they seem not to be accepted either (in my case when the standard HTML submit button is clicked).