HI,
I have a textbox and a Image button added to a aspx page. The button event works fine. The problem is if the page is idle for some time after user enters some data and press the button, then the button click event is not fired, again clicking on the button
with the same data entered before, then the button event is fired. There is no Ajax used.
Below is the aspx:
<table>
<tr>
<td >
<div class="DivData">
<asp:TextBox onfocus="javascript:RemoveDefaultText();" onblur="javascript:ShowDefaultText();" runat="server" ID="txtSearch"></asp:TextBox>
<asp:ImageButton runat="server" ID="btnSearch" ImageUrl="/Search.jpg" OnClick="btnSearch_Click" />
</div>
</td>
</tr>
</table>
Why is the event not triggerred after idle time ...
Go to the complete details ...