On 18 Jan 2006 04:06:53 -0800, "gaurav tyagi" <gt*****@gmail.com>
wrote:
NOT WORKING------------------------------
private void btnManagement_Click(object sender,
System.EventArgs e)
{
Response.Redirect( "ManagementMenu.aspx);
}
When you do a response.redirect like this, the server should send a
302 HTTP response with a location header that tells the browser where
to go. The browser will then do an HTTP GET for that location. A
Netmon trace (or a trace using Ethereal) will give you an indication
as to what is breaking down.
Jim Cheshire
--
Blog:
http://blogs.msdn.com/jamesche