Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
11answers
11k views

How to simulate Server.Transfer in ASP.NET MVC?

In ASP.NET MVC you can return a redirect ActionResult quite easily : return RedirectToAction("Index"); or return RedirectToRoute(new { controller = "home", version = Math.Random() * 10 }); ...
6
votes
2answers
7k views

Thread was being aborted

I am using Server.Transfer. Everything works fine, but exception log shows following exception. System.Threading.ThreadAbortException: Thread was being aborted. at ...
3
votes
1answer
613 views

Server.Transfer in Global.asax

I have a custom error handler in the global.asax's Application_Error method, when an error occurs I use the following code to transfer user to the error page: Server.Transfer("/Error/"); However ...
3
votes
2answers
1k views

Implementing TransferResult in MVC 3 RC - does not work

Any ideas how to fix the below? There is a great implementation of TransferResult available here, which worked great on MVC 1,2 but doesn't work on MVC 3 RC. public class TransferResult : ...
3
votes
0answers
362 views

server.transfer changing the url second time

I am using asp.net 2.0, I do server.transfer from page 1 to page 2, the url remains same as page 1. Now I click a link in page 2 and that will transfer me to page 3. So, the url should remain same as ...
3
votes
2answers
5k views

Server.Transfer throws Error executing child request. How to resolve?

I have a HttpModule in C# 2.0 which handles exceptions thrown. Whenever the exception is thrown, an error page (aspx) with some querystring will be called. It is done through Server.Transfer(). But ...
2
votes
1answer
646 views

Can not do Response.Redirect when I use WebClient with Silverlight 4.0 to call aspx page

I am working on a Silverlight Project. When i saved a jpg picture into a memorystream to save it into the Context.InputStream, it is working fine. I am calling an aspx page who thread the upload into ...
2
votes
1answer
128 views

SEO Question, and about Server.Transfer (Asp.net)

So, we're trying to up our application in the rankings in the search engines, and one way our SEO guy told us to do that was to register similar domains...for example we have something like ...
2
votes
3answers
143 views

ASP.NET URL remapping &redirection - Best Practice needed

This is the scenario: I have a list of about 5000 URLs which have already been published to various customers. Now, all of these URLs' location has changed on my server side. The server is still the ...
2
votes
2answers
656 views

Which page gets the postback with Server.Transfer?

I have a simple form that dynamically presents a data entry form, and the user does a postback and the results are saved to a database. I have created a new version of the form, and based on some ...
2
votes
1answer
1k views

Is there any workaround for the UpdatePanel + Server.Transfer problem?

I'm trying to use an UpdatePanel in my ASP.NET application. Unfortunately, it seems that I can't do this if I am using Server.Transfer() in my application. Modifying that component of the application ...
2
votes
3answers
5k views

How to post data from a webform page to an HTTPHandler.ashx file?

Please bear with a bit of background first... I have a web application project to support file transfer operations to vendor product backend. It's composed of 2 HTTPHandler files compiled into a ...
1
vote
1answer
356 views

How can I pass textbox value from usercontrol(ascx) to another page (aspx) using Server.Transfer()

I am writing one user control (webpart) in kentico. I want to pass textboxes' value from usercontrol to aspx page using Server.Transfer(). Can it be? If so, how can I do like that? Best Regards, ...
1
vote
1answer
300 views

Server.Transfer from Global.asax Application_Error

I have inherited some code that is not working as I think it should: There is a form with a file upload control on it, the file limit is set to the default of asp.net 4MB. There is no real reliable ...
1
vote
1answer
236 views

Asp.Net Server.Transfer problem with Toolkit ScriptManager

I'm working on a site which has a toolkitscriptmanager in the master page. My problem lies when navigating to a page which performs a server.transfer. I'm actually also using url redirects, but from ...
1
vote
2answers
644 views

asp.net on session timeout redirect to home page

i have web app and on session timeout and user interaction on the page, this needs to redirect to home/landing page solutions found on the net 1) Session check in page_load of all the aspx pages of ...
1
vote
1answer
478 views

Server.Transfer from WebForms ashx handler to MVC 3

I'm trying to do a Server.Transfer from an ASP.NET ashx handler to a ASP.NET MVC 3 page. I don't want to use Server.Redirect because I do not want the URL to change. Is this possible?
1
vote
2answers
140 views

Server.Transfer Method

When should I use Server.Transfer() method? What is the advantage of using this method?
1
vote
1answer
831 views

Server.transfer causing HttpException

I am developing a C#/SQL ASP.NET web application in VS 2008. Currently I am using the Server.Transfer method to transfer control from one ASPX.CS file to another ASPX file. The first time through, ...
1
vote
3answers
692 views

Why would AcquireRequestState in my HTTPModule not fire _sometimes_?

I've got an HTTPModule that does some role-based page access security (I'm having to retrofit some security into some code that we've acquired). I've noticed that in one instance that it doesn't fire ...
1
vote
5answers
1k views

Why we cant use Server.Transfer() to redirect on another server

I know that Server.Transfer() should be used to redirect to another ".aspx" page on the same server. But what is the reason behind why should I not use this method to redirect to aspx page on another ...
1
vote
1answer
634 views

ASP.NET Server.Transfer() problem

I am using this code... Server.Transfer("/Student/StudentControlPanel.aspx?username=" + username); And getting the following Exception: InvalidOperationException : "Failed to map the path ...
1
vote
1answer
1k views

Server.Transfer and System.Threading.ThreadAbortException

See http://support.microsoft.com/kb/312629/EN-US/ I am using reponse.direct in my app as well and I am not getting the exception. The workaround that the knowledge base article suggests ...
0
votes
0answers
26 views

Site transfer Issue

I made a site tranfer from http://www.tipperfection.com/ to http://www.nailmatch.com/. Once I transferred all the contents, and I tried to open the new website I get an error as follows. Server Error ...
0
votes
3answers
96 views

How to redirect user another .NET page (in same domain) but not change URL in addressbar?

I'm working on a company website that allows users to have their own homepage under the same domain. The URL would look similar to http://mydomain.com/UserName We have each user's content saved in a ...
0
votes
2answers
95 views

POST HTML <form> to external aspx page

I have already read through this. However, in my case the page I am posting to is an external .aspx page. Basically I generate XML data on the source page code with XElement, and need to POST that to ...
0
votes
1answer
42 views

Create a rule with Service.Transfer() Behaviour IIS Rewriting Module

Is it possible to create a rule that has a behaviour similar to the Service.Transfer from ASP ?
0
votes
2answers
89 views

Server.Transfer Vs refresh of the browser

I created two forms in asp.net, there are test1.aspx and test2.aspx. The test1 page contains one submit button. If the user clicks this, I do transfer to the test2 page by using server.transfer ...
0
votes
1answer
73 views

How to work browser refresh button

I have the test1.aspx and test2.aspx. A button contains in the test1 page. I make the code when the button clicks, the test2 page is transferred by using "server.transfer" method. So, we will see the ...
0
votes
3answers
89 views

Whats the difference between the following page transfer methods

What is the difference between the following: Server.transfer? Response.Redirect? Postbackurl? When should I decide to use which?
0
votes
3answers
232 views

Whats the namespace of Server.Transfer method?

I get a red underline under the Server Class: Server.Transfer("~/PostEdit.aspx"); The mistake is: Cannot access a non-static member of outer type 'System.Web.UI.Page' via nested type ...
0
votes
0answers
123 views

Server.Transfer/Responce.Redirect in Application Error

I am using an asp fileupload input and have read that a "Maximum request length exceeded" error needs to be caught in the global.asax application_error so I initially made sure it was a maximum length ...
0
votes
0answers
231 views

HttpException unhandled when using Server.Transfer or Response.Redirect

I am having a problem when using Server.Transfer("mypagehere") or Response.Redirect("mypagehere") Though I am not using it in a common way ; I have written my own control in the app_code ...
0
votes
2answers
176 views

ASP.NET VB.NET Remote Login Portal Setup

Technology ASP.NET, VB.NET 2.0 (soon to be 4.0) Overview I'm writing a Login / Authentication Portal, so that a web application can use it to login a user, and then they can use the application using ...
0
votes
1answer
208 views

Using Server.Transfer inside of a UserControl gives me a file not found exception

I've tried just about every relative path that I can think of, and none of them work. Server.Transfer("/contact-us.aspx"); Server.Transfer("./contact-us.aspx"); Server.Transfer("~/contact-us.aspx"); ...
0
votes
2answers
264 views

sending messages to an ip address and port

I have been trying get my head around this for last few weeks now. All i want to do is be able to send a string created on the iphone/ipad and send that to a specific ip address and port number. That ...
0
votes
0answers
411 views

Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive

I am getting this error in my .net(Azure) application:- Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive... I am ...
0
votes
2answers
487 views

IIS7 ASPX 404 Error Pages / Server.Transfer and problems with relative paths

I am trying to implement a universal .NET 3.5 ASPX 404 error page that handles both "not found" requests in IIS 7 (classic mode) as well as 404 HttpExceptions thrown in code. I am avoiding ...
0
votes
1answer
190 views

asp Server.Transfer put parameter

i googled many samples, all show such code Server.Transfer("/default.asp?p=news") but i get error -An invalid character was specified in the Path parameter for the MapPath method. can you help ...
0
votes
1answer
158 views

if child of server.execute calls Server.Transfer or handler.ProcessRequest or Response.Redirect, what happens?

I'm trying to run (in a try block, with no catch but a finally) HttpContext.Current.Server.Execute(child1, tw, true); where the child page tries to run one of the following: ...
0
votes
1answer
406 views

Server.Transfer in Try-catch :Thread abort exception

What is the equivalent of Response.Redirect("abc.aspx",false) when i use Server.Transfer instead of Response.Redirect.I use false as the second param of Response.Redirect to stop receiving the ...
0
votes
1answer
237 views

Application Lifecycle Event Not Fired when Server.Transfer

I have a custom rewrite module and when specific query string parameters are passed i need to be able to call a server.transfer and not a response.redirect due to adserve software and tracking in the ...
0
votes
1answer
124 views

How to create a server control on another ASPX file

I am developing a C#/SQL ASP.NET web application in VS 2008. Currently, I am transferring control from one ASPX file to another: if (uploadFile.PostedFile.ContentLength > 0) { ...
0
votes
1answer
338 views

How to make a server.transfer() with a Response.AddHeader(“refresh”, “seconds”) and not get a 404 error?

so this is the scenario: I have a base class for all login-controlled pages: public class SessionControlledPage : Page { protected virtual void Page_Load(Object sender, EventArgs e) { ...
0
votes
3answers
3k views

How to use Server.Transfer or Response.Redirect from ajax UpdatePanel?

How to use Server.Transfer or Response.Redirect from ajax UpdatePanel?
0
votes
2answers
701 views

Server.Transfer to internal virtual application

My question is how to manage several virtual applications, located at the same host firstdomain.com is redirected to firstdomain.com/1 seconddomain.com is redirected to seconddomain.com/2 and so ...
0
votes
4answers
1k views

Server.Transferrequest() and getting the current URL

Say in my 'Page_init()' of "a.aspx" i just have 'server.transferrequest("b.aspx"). This works great, displays the content for "b.aspx" and the browserurl still stays at "a.aspx". Happy days. ...
0
votes
1answer
131 views

Server.Transfer and Getlastwritetime

I'm using asp.net 3.0. I have Page A doing a Server.Transfer to Page B. On both page A and Page B I'm want to be able to use System.IO.File.GetLastWriteTime(MapPath(Page.Request.Path.ToString())) in ...
-1
votes
3answers
392 views

Which one is better Server.Transfer and Response.Redirect

Which one is better, Server.Transfer or Response.Redirect? I am looking for some explanation for this.