G
Guest
Dear Folks,
I have a hyperlink in my page - webform1.aspx
on click of this i want it to post back to the second page -webform2.aspx.
is this possible in ASP.Net 1.1. if so how can i go about it.
I tried to use a javascript function for this
function dopostback()
{
document.Form1.hdnpostback.value="hhhhh";
document.Form1.method = "Post";
document.Form1.action="webform2.aspx";
document.Form1.submit();
}
but it was not working.
thanx in advance
I have a hyperlink in my page - webform1.aspx
on click of this i want it to post back to the second page -webform2.aspx.
is this possible in ASP.Net 1.1. if so how can i go about it.
I tried to use a javascript function for this
function dopostback()
{
document.Form1.hdnpostback.value="hhhhh";
document.Form1.method = "Post";
document.Form1.action="webform2.aspx";
document.Form1.submit();
}
but it was not working.
thanx in advance