Microsoft Visual Studio
When I import the ASP.NET page into Visual Studio 2003, it complains about SRC=.
You have to delete the SRC-attribute. Visual Studio 2003 uses CodeBehind instead.
You find a tutorial here:
http://www.spreadsheetconverter.com/tutorials/programmers/as pnet/save-asp-net-to-database-14.pdf
A little article describing the difference between Src and CodeBehind:
http://www.dotnetcoders.com/web/Articles/ShowArticle.aspx?ar ticle=22
Visual Studio is too expensive, any alternatives?
But if you do not want to purchase VS, there are free alternatives, for example WebMatrix
http://www.asp.net/webmatrix/
There are also free version of Visual Studio 2005, called Visual Studio 2005 Express:
http://lab.msdn.microsoft.com/express/
How can I store the form values in a database?
You want to store the values from your ASP.NET form into a database and repopopulate the form when the user returns back.
