how can I pass parameter value on body onload using javascript function
<html> <head> <script language="javascript"> function func1(emailid){ //the code for pass parameter value to my response.aspx "http://localhost:51376/Response.aspx?emailId=emailid"> } </script> </head> <body onload="func1(1234)"> </body> </html>
"http://localhost:51376/Response.aspx?emailId=" + emailid
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)