tags:

views:

50

answers:

2

I'm converting some ASPX pages to user controls (ASCX).

I still need some of the page redirection to work.. and server.transfer is not an option (I need the URL in the address bar to change).

Is there a way to either user Response.Redirect() from within a user control or a similar method?

Thanks.

A: 

You can continue to use Response.Redirect() in UserControls.

Mark Redman
+3  A: 

Use Page.Response.Redirect() inside UserControls.

Ilya Volodin
"Page." is what I needed. Thanks.
hamlin11