Hi folks, I need some help with my code, trying to call a javascript within my code page c#
code page
//Redirect the page
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "myFunction>", "AnotherFunction();", true);
}
webpage
function myFunction>{
<a href='javascript:history.go(+1)'></a>
}
Go to the complete details ...