473,939 Members | 13,648 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

response.redire ct is not working but server.transfer is working

in my appplication if i try to go to next page using
response.redire ct, it does not work and control remains on same page
but if i use server.transfer control goes to nex page??

can any one explain me why ?????

Jan 18 '06 #1
14 3989
Hi,
Can you post how you are using Response.Redire ct ?
Patrick

"gaurav tyagi" <gt*****@gmail. com> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
in my appplication if i try to go to next page using
response.redire ct, it does not work and control remains on same page
but if i use server.transfer control goes to nex page??

can any one explain me why ?????

Jan 18 '06 #2
old way (Not
working)------------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
try
{

Response.Redire ct( "ManagementMenu .aspx", false );
}
catch( Exception aExc)
{
string sErrMsg = "Failed to go to requested web page !\n\n" +
"Details:\n \n" +
aExc.Message;
GuiManipulator. DisplayErrorPag e( this.Page, sErrMsg );
}
}

Next
way(notWorking)----------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
Response.Redire ct( "ManagementMenu .aspx", false );

}
new
Way(Working)---------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
Server.Transfer ("ManagementMen u.aspx");

}

Jan 18 '06 #3
i think you chould clear out the 2nd param :)
"gaurav tyagi" <gt*****@gmail. com> schreef in bericht
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
old way (Not
working)------------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
try
{

Response.Redire ct( "ManagementMenu .aspx", false );
}
catch( Exception aExc)
{
string sErrMsg = "Failed to go to requested web page !\n\n" +
"Details:\n \n" +
aExc.Message;
GuiManipulator. DisplayErrorPag e( this.Page, sErrMsg );
}
}

Next
way(notWorking)----------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
Response.Redire ct( "ManagementMenu .aspx", false );

}
new
Way(Working)---------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
Server.Transfer ("ManagementMen u.aspx");

}

Jan 18 '06 #4

Edwin Knoppert wrote:
i think you chould clear out the 2nd param :)
"gaurav tyagi" <gt*****@gmail. com> schreef in bericht
news:11******** **************@ g44g2000cwa.goo glegroups.com.. .
old way (Not
working)------------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
try
{

Response.Redire ct( "ManagementMenu .aspx", false );
}
catch( Exception aExc)
{
string sErrMsg = "Failed to go to requested web page !\n\n" +
"Details:\n \n" +
aExc.Message;
GuiManipulator. DisplayErrorPag e( this.Page, sErrMsg );
}
}

Next
way(notWorking)----------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
Response.Redire ct( "ManagementMenu .aspx", false );

}
new
Way(Working)---------------------------------------------------------------------------------------------------

private void btnManagement_C lick(object sender, System.EventArg s e)
{
Server.Transfer ("ManagementMen u.aspx");

}




i have checked this one also
if i remove second argument , by default it takes true this means
response.redire ct will stop the existing thread and go for new thread
but here it is not enable to open next page so a blank page comes.
so if i put false , framework do not close current thread and try to
open next page thread but here also it is not able to open next page
so current page remains there


Jan 18 '06 #5
NOT WORKING------------------------------
private void btnManagement_C lick(object sender,
System.EventArg s e)
{
Response.Redire ct( "ManagementMenu .aspx);
}

Jan 18 '06 #6
On 18 Jan 2006 04:06:53 -0800, "gaurav tyagi" <gt*****@gmail. com>
wrote:
NOT WORKING------------------------------
private void btnManagement_C lick(object sender,
System.EventAr gs e)
{
Response.Redire ct( "ManagementMenu .aspx);
}


When you do a response.redire ct like this, the server should send a
302 HTTP response with a location header that tells the browser where
to go. The browser will then do an HTTP GET for that location. A
Netmon trace (or a trace using Ethereal) will give you an indication
as to what is breaking down.

Jim Cheshire
--
Blog:
http://blogs.msdn.com/jamesche
Jan 18 '06 #7
Tell me where is your Management.aspx page reside?

Jan 18 '06 #8
it is in same application Management.aspx resides.
both pages are in same application

Jan 19 '06 #9
Tell me the folder structure

Jan 19 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
2197
by: Stephen | last post by:
I was wondering if someone can help me with an web application design problem. I have a aspx page which builds up an arraylist called addresses and outputs the values in the arraylist items to a datagrid. I am using the viewstate object to store the Arraylist items on the page on postback. My PROBLEM is that I need to redirect the user to a new aspx page and on this new page i need to be able to access the items in my arraylist. Is this...
6
4570
by: \A_Michigan_User\ | last post by:
Ok, I give up... why do 1-4 work fine... but 5-6 give "can't find" errors? 1. Client-side VBscript code: call navigate("\\209.11.22.33\MyDir") 2. Client-side VBscript code: location.href ="\\209.11.22.33\MyDir" 3. Typing "\\209.11.22.33\MyDir" into my ie6 browser. 4. Typing "\\209.11.22.33\MyDir" into my Windows Explorer. 5. Server-side ASP: server.transfer "\\209.11.22.33\MyDir" 6. Server-side ASP: response.redirect...
3
9097
by: Justin | last post by:
Hi, Im confused here over the usage of Response.Redirect and Server.Transfer. I used frameset for my work, what are the proper usages of the two methods that seems working similar.. The problem i faced while using Response.Redirect is that the page that is directed to, does not looks as desired..the textboxes are not visible anymore and so as
5
2770
by: Paul de Goede | last post by:
I set the Response.Filter in my aspnet application but I have noticed that if you do a Server.Transfer that the filter doesn't get called. And in actual fact the response is mostly empty. It seems that only scripts get rendered. I have seen this mentioned on this newsgroup before but with no resolution. Can anyone give any insight into this problem. Is there a work around? Manually push the Reponse.OutputStream through your filter after...
4
2129
by: Harsh Thakur | last post by:
Hi, I'd like to know the performance related differences between Response.Redirect and Server.Transfer. I'd like to redirect the user to a different page. I can either do a Response.Redirect("URL") or a Server.Transfer("URL"). So I'd like to find out which is more efficient/better. Can anyone please tell me or give any pointers to links on the web? Thanks & Regards
1
2722
by: Sospeter | last post by:
Hi Ken, I have done that but still experiencing same problem. Tried the following i.e. turning smartnavigation = false and using server.transfer as below but nothing works. Please help. Page.SmartNavigation = False FormsAuthentication.SetAuthCookie(txtCustID.Text, False)
3
5520
by: Alan Silver | last post by:
Hello, Sorry if this is a stupid question, but I can't really see much difference between these tow methods according to the scant info in the SDK. Could anyone enlighten me? TIA -- Alan Silver
2
2075
by: Nathan Sokalski | last post by:
The last two lines of code in the Click event of a Button Control on my page are: Me.WelcomeEmail() Response.Redirect("mainmenu.aspx") The last line of code in Me.WelcomeEmail() is:
9
4368
by: RN1 | last post by:
When a server encounters the line Response.Redirect("abcd.asp") in a ASP script, the server tells the browser that it has to be redirected to another page (which is abcd.asp, in this case). The browser then makes a new request to the server to redirect itself to abcd.asp after which the user gets redirected to abcd.asp. But in case of Server.Execute (or Server.Transfer), when the server
0
9963
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11524
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11291
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9858
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8218
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6076
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4907
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
4447
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3501
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.