It shows that you are unregistered. Please register with us by clicking Here
![]() |
|
![]() |
![]() | Register - FAQ - Today's Posts - New Posts - Support - Search | ![]() |
|
|
#1 (permalink) |
|
Junior Member
Join Date: Jul 2006
Age: 28
Posts: 4
|
<i><b>Originally posted by : shaila (shaila@cavendish.co.uk)</b></i><br />When I try to redirect to any page i am getting this message in the browser..why is it? <br /><br />my script goes like this<br /><br />Response.Redirect "user.asp"<br /><br />The message i am getting is :-<br /><br />The requested resource is in use. <br /><br />Thnkas<br />shailaza<br /><br />
Please help Emily |
|
|
|
|
|
|
|
#2 (permalink) |
|
Member
Join Date: Jul 2006
Age: 25
Posts: 53
|
Check your code, make sure all objects are closed and set to nothing. This includes any command or ADOX objects using an Active.Connection property, make sure this property is set to nothing as well.
If you are using thisPage.NavigateURL method, use response.redirect or server.transfer instead - avoid the thisPage object. Install the latest service packs and security releases and make sure you have the most recent MDAC refresh. If you have 'Cache ASP applications' checked, try unchecking it temporarily Try changing the address space and/or isolation settings for the application / site in question. Try dropping and re-creating the application. Hope this helps!! |
|
|
|
|
|
#3 (permalink) |
|
Member
Join Date: Jul 2006
Age: 48
Posts: 45
|
The Response object allows you to send users to other pages without their knowledge, using the Redirect method. For example
<%@ Page Language="VB" %> <script runat="server"> sub Page_Load(obj as Object, e as EventArgs) Response.Redirect("http://homepage.ntlworld.com/n.nadat/default.aspx") end sub <script> <html><body> Hello world </body><html> When a user requests this page, he'll be sent to http://homepage.ntlworld.com/n.nadat/default.aspx immediately and well never see your Hello world message. This is a usefull method if you want to send a user someplace depending on username and password he enters in your form, for example. |
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Clan Index Redirection Error | Rose | Home Base | 4 | 08-18-2005 09:35 PM |