I have a input text field and Search button on the page.
The Search button is coded as <button type="submit" runat="server" id="btnSearch" onserverclick="btnSearch_Click">Search</button>
When you enter something on input text field, and click on Go button from the iPad, it will trigger the Search function on server side. I noticed that it executed the Page_Load & btnSearch_Click function on the server side twice.
But if you click on the Search button from the page, it only executed one time on the server side. Any idea to correct this?
Really appreciated.
Thanks
Ta