G
Guest
I have a web form
<form method="post" runat="server" id="PromotionForm">
and some textboxes
and
<asp:button id="Button3" runat="server" Text="Update"></asp:button>
When i run my web application pressing f5 and hitting Update Button it does
nothing Though I have
Response.Write ("sa");
Response.End ();
if (Page.IsPostBack)
{
Response.Write ("sa");
Response.End ();
}
code block in my Page_Load event handler.. What can cause it ?
<form method="post" runat="server" id="PromotionForm">
and some textboxes
and
<asp:button id="Button3" runat="server" Text="Update"></asp:button>
When i run my web application pressing f5 and hitting Update Button it does
nothing Though I have
Response.Write ("sa");
Response.End ();
if (Page.IsPostBack)
{
Response.Write ("sa");
Response.End ();
}
code block in my Page_Load event handler.. What can cause it ?