| [SOLVED] ASP.NET funny problem!!!? I insstalled .NET v2.0.50727.42, i have two pages, Get.aspx and Save.asp. There is a server side form in the Get.aspx:
<form runat="server" action="Save.aspx" name="GetData">
But after runnging page when i click on the Submit button it return to Get.aspx, in the page source form's action property changed to Get.aspx, but i wrote it Save.aspx in the source file!!!
How can i solve it?
In the browser's source view:
<form action="Get.aspx" name="GetData">
and, inside the form in Get.aspx i used ASP.NET controls, i can't move runat="server" ! |