• 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
  • Ron McLeod
  • Devaka Cooray
  • Paul Clapham
Sheriffs:
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
Bartenders:

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>
 
You showed up just in time for the waffles! And this tiny ad:
Paul Wheaton's 16th Kickstarter: Gardening playing cards for gardeners and homesteaders
https://coderanch.com/t/889615/Paul-Wheaton-Kickstarter-Gardening-playing
reply
    Bookmark Topic Watch Topic
  • New Topic