Response.Redirect in c# class.
hi,
I have one class library project created, there is one class BaseUIController in that, I want to write Navigate() method in the class would work as good as Response.Redirect("URL")
Function declaration is:
public void NavigatePage(string URL)
{
}
Please tell me how can I implement it, because System.Web.UI is not avaliabe in class library type projects, so I can'nt use Response.Redirect(URL).
Please guide me.
Thanks is advance,
manish
|