• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Not Jump to Next Page

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I can't able to jump to next page onclick the dashboard button and can't able to excel export . correct the code
<script>
function clicks()
{
  Login.method="post";
    Login.target="_self";
    Login.action="Login";
    Login.submit();
//response.sendRedirect("Login");  
}
 
</script>
<div class="w3-container w3-theme-l4 full-height">

<div class="w3-row-padding" >

<p class="w3-center">
<input class="w3-button w3-theme-d5 w3-center w3-round-xlarge w3-hover-light-blue" type="Submit" name="export" value="Export to Excel" class="button" onClick="ExportToExcel('xlsx')">

<input type="Submit" name="dashboard" value="View Dashboard" class="w3-button w3-theme-d5 w3-center w3-round-xlarge w3-hover-light-blue" onClick="clicks()">

</p>
   </div>
 
Won't you please? Please won't you be my neighbor? - Fred Rogers. Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic