2
Reply

How to redirect to new page from sharepoint httphandler.

Rahul Khanna

Rahul Khanna

Mar 18 2014 12:31 PM
1.3k
 Hi,
 
Using Httphandler I am trying to redirect to download.aspx page but always I am getting the "This page can't be displayed" error. Here is my code:
 
 
public class MyHandler:IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
if(condition satisfies)
{
//do operation
}
else
{
string myurl = SPContext.Current.Web.Url + "/_layouts/download.aspx?" + "SourceUrl=" + currentItemUrl + "&FldUrl=" + currentFolderURL + "&Source=" + sourceURL;
context.Response.Redirect(myurl);
**Its redirecting to the download.aspx page but always giving the error"This page can't be displayed"**
}
}
}

Answers (2)