jquery Mobile aand Asp.net Button click event not firing and redirecting to back url

jquery Mobile aand Asp.net Button click event not firing and redirecting to back url

I have follwing code on asp.net master page 
 
  1. <div class="main" data-role="content">
  2. <div class="choice_list menuwrapper" >
  3. <ul data-role="listview" data-inset="true">
  4. <li><a href="CreateUser.aspx" data-transition="slidedown" >
  5. Create User
  6. </a></li>
  7. <li><a href="WebForm1.aspx" data-transition="slidedown">
  8. Manage User
  9. </a></li>
  10. <li><a href="Default.aspx" data-transition="slidedown">
  11. Upload File
  12. </a></li>
  13. </ul>
  14. </div>
  15. <asp:ContentPlaceHolder ID="MainContent" runat="server" />
  16. </div>
but when i try to click any button on createuser or other page the button_click event is not firing in asp.net and the page redirects to default.aspx, I found when gooogled that using
  1. $(document).bind("mobileinit", function () { $.mobile.ajaxEnabled = false; $.mobile.ajaxLinksEnabled = false; });


But it didnt help in my case

Any help would be appreicated!
Thanks!!