G
Guest
All,
I have a ASP.NET webform that has a button that when clicked simply directs
the user to another .htm page - code below
private void btnSend_Click(object sender, System.EventArgs e)
{
try
{
Server.Transfer("thanksr.htm");
}
catch(Exception ex)
{
string message=ex.Message;
}
}
When I attempt to perform the Server.Transfer I get an error saying "Error
executing child request for thanks.htm."
What am I doing wrong?
Thanks
Msuk
I have a ASP.NET webform that has a button that when clicked simply directs
the user to another .htm page - code below
private void btnSend_Click(object sender, System.EventArgs e)
{
try
{
Server.Transfer("thanksr.htm");
}
catch(Exception ex)
{
string message=ex.Message;
}
}
When I attempt to perform the Server.Transfer I get an error saying "Error
executing child request for thanks.htm."
What am I doing wrong?
Thanks
Msuk