posted 1 year ago
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>