 |
BOOK: Professional ASP.NET 2.0 and Special Edition; ISBN: 978-0-7645-7610-2; ISBN: 978-0-470-04178-9  | This is the forum to discuss the Wrox book Professional ASP.NET 2.0 Special Edition by Bill Evjen, Scott Hanselman, Devin Rader, Farhan Muhammad, Srinivasa Sivakumar; ISBN: 9780470041789 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Professional ASP.NET 2.0 and Special Edition; ISBN: 978-0-7645-7610-2; ISBN: 978-0-470-04178-9 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|
|

May 10th, 2006, 10:55 AM
|
|
Authorized User
|
|
Join Date: Mar 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|
|

May 10th, 2006, 12:28 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Hi manish,
From a good design perspective, you should let the class library simply return a value that you use to determine where to redirect to in the presentation layer (the .aspx pages). By letting the class library redirect users, you tie it to a web application, which limits its reuse possibilities.
That said, you can add a reference to System.Web in your class library. Then you access objects like Response and Session in the class library like this:
System.Web.HttpContext.Current.Response.Redirect(" SomePage.aspx");
Note that this method will fail when it's accessed from outside a Web app (e.g. a Console app, Windows Forms etc)
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004
|
|

May 12th, 2006, 01:20 AM
|
|
Authorized User
|
|
Join Date: Mar 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Thanks Imar!
-Manish
|
|

October 30th, 2007, 05:33 AM
|
|
Registered User
|
|
Join Date: Oct 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hi Imar,
I tried using the system.web.httpcontext.current.response.redirect(" mypage.aspx"); in the class library... but in runtime, its specifying that the object is null and not set to an instance. any ideas??? what do i need to do as alternative.
thanx in advance. please reply asap...
RO
|
|

February 11th, 2011, 04:29 PM
|
|
Registered User
|
|
Join Date: Feb 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I have the same issue as Red_October. I have a button and the code behind for the button is
HttpContext.Current.Response.Redirect("URL", false);
when click on the button, system give this error "Object reference not set to an instance of an object"
can anyone help me with this issue?
|
|

February 12th, 2011, 05:41 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
If you have the same issue as Red_October, the same response to the question applies ;-)
Quote:
Can you show us your exact code and explain where it is being called?
|
That is, explain the setup of your site / application, and show us the code for the page.
Cheers,
Imar
|
|

February 12th, 2011, 09:20 AM
|
|
Registered User
|
|
Join Date: Feb 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I have a SharePoint site http://moss2007
I have a page on this site call ViewMyStaff.aspx (this is just a blank webpart page). when the user clicks on the button, system should take me to http://moss2007/Pages/ViewMyStaff.aspx page. The form library is in the same site collection as this page
httpcontext.current.response.redirect("http://moss2007/pages/ViewMyStaff.aspx", false)
Thanks in advance,
|
|

February 13th, 2011, 10:26 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
You may be better off posting this in a SharePoint category, and provide more code that demonstrates the problem.
Cheers,
Imar
|
|

February 16th, 2012, 01:13 PM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
Hi Imar,
I have the same problem, in my case I am trying to do the redirect from a VB.Net module, here is the code:
Code:
Public Sub ShowEPSErrorPage(Optional ByVal strErrorMessage As String = gGenericErrorMessage,Optional ByVal strDetailedMessage As String = "")
HttpContext.Current.Session.Add(ErrorPage.SA_ERR_MESSAGE, strErrorMessage)
HttpContext.Current.Session.Add(ErrorPage.SA_DETAILS_MESSAGE, strDetailedMessage)
HttpContext.Current.Response.Redirect("/ErrorPage.aspx")
End Sub
I have System.Web imported and as I said this is in a module which is part of my web application.
When I debug this, sometimes the debugger will be able to evaluate HttpContext.Current and sometimes it would tell me "Unable to evaluate expression", but either way this throws an exception with a message "Unable to evaluate expression"!! the path is proper so I am not sure what am I missing or doing wrong?
Thanks
Jafar
|
|
 |