H
Howard
I have an aspnet form like this one
<form id="Form1" runat="server">
<asp:FormView ID="FormView1" runat="server" DefaultMode="Insert">
....
</form>
the html output always becomes
<form id="Form1" runat="server" action="insert.aspx?id=123">
I would like it to become with out the id part
<form id="Form1" runat="server" action="insert.aspx">
I tried everything, nothing seemed to change the generated form html code.
please help,
Howard
<form id="Form1" runat="server">
<asp:FormView ID="FormView1" runat="server" DefaultMode="Insert">
....
</form>
the html output always becomes
<form id="Form1" runat="server" action="insert.aspx?id=123">
I would like it to become with out the id part
<form id="Form1" runat="server" action="insert.aspx">
I tried everything, nothing seemed to change the generated form html code.
please help,
Howard