The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
24 views

Orginal Url are written instead of User Friendly Url in log on IIS 7.5 when using Server.TransferRequest

I want to get the User Friendly Url to be written on activity log of iis 7.5.But i always get the orginal url when using Current.RewritePath. It was working fine IIS 6.I tried using ...
4
votes
2answers
117 views

In ASP codebehind, is there any benefit to adding the return keyword after a redirect?

I was wondering whether if it was necessary to keep a return statement after my Response.RedirectPermanent call in my codebehind? It doesn't seem like it, but I wanted to confirm with others. ...
0
votes
1answer
83 views

Server.transfer looks for the resource in subfolder

I have a page in a root folder and another page in a files folder inside the root. folder structure ->root->files->foo.aspx ->root->default.aspx ->root->foo.js when i do a ...
0
votes
2answers
190 views

Validations not working after server.transfer in asp.net

<td align="left" width="15%" class="body_txt" style="padding-right: 2px; padding-left: 25px;"> <asp:Label ID="lblFirstName" runat="server" Text="First ...
0
votes
2answers
63 views

HttpServerUtility.Transfer vs Server.Transfer?

What's the difference between HttpServerUtility.Transfer and Server.Transer?
0
votes
2answers
131 views

Wordpress site is not displaying correctly in internet explorer after server transfer

I have an odd issue. A site that I'm building stopped displaying correctly in IE 8/9 after transferring it to another server. I can't figure out what is wrong with the site. I am starting to suspect ...
3
votes
1answer
87 views

Server.transfer; how do I remove the original page content?

I have two aspx pages, the first that has 5 links. All 5 links use Server.transfer("page_x.aspx"); My problem is once the transfer is complete I'm left with my original 5 links plus the new data. How ...
0
votes
0answers
45 views

Changing VPS hosting provider on highload website

I just want to switch my VPS hosting provider. What is the best way to do it? I need complete transfer of my whole VPS including the system files, not just DB and content, because I have a lot of ...
0
votes
1answer
131 views

server.transfer between applications

I have 3 applications under 1 solution with the following structure, WebSoln, WebApp > Default.aspx SSOApp > SSO.aspx (contains only redirection to Default.aspx) TestApp > Test.aspx page I have ...
3
votes
2answers
165 views

Is there a Server.Transfer() alternative to get a user's previous page?

Is there any way to know the previous page a user visited (on my site of course) from server side? I know I can do it if user was redirected before with Transfer() method. Does any history exist ...
1
vote
1answer
91 views

How Do I Copy Info From Wikipedia Table To Combo Boxes? Visual Basic.Net

need to somehow copy the number of seasons and episodes in each season from a Wikipedia table into two combo boxes. One for seasons and the other for episodes. The apps supposed to allow the user to ...
0
votes
0answers
230 views

response.redirect or server.transfer from httphandler

I need to redirect to another apsx page from my custom httphandler. I tried redirecting from the context and it goes to the new page and executes the code but it never refreshes to the new page ...
0
votes
2answers
483 views

How to use Server.Transfer effectively

How to use Server.Transfer("default.aspx") for better performance for navigating withing the website. When I use this it is not changing the url in the address bar. How can I achieve new url by ...
3
votes
2answers
128 views

Why does HTTP headers doesn't get created when I use Server.Transfer()?

I'm using an .aspx page to serve an image file from the file system according to the given parameters. Server.Transfer(imageFilePath); When this code runs, the image is served, but no Last-Modified ...
0
votes
0answers
97 views

Server.Transfer Fires Page_Load multiple times

I have a site I am working on which uses an HttpHanderFactory. I use Server.Transfer on a particular page I found it was erroring mostly because of a coincidence. The error being returned was that ...
3
votes
2answers
515 views

Faking MVC Server.Transfer: Response.End() does not end my thread

I have two issues here, the second one is irrelevant if the first one got answered, but still technically interesting in my opinion... I will try to be as clear as possible: 1st question: my goal is ...
0
votes
1answer
182 views

Server.Transfer not tranfer some urls

i use server.transfer at the begining it works perfectly. but then i add another language to my site and i try to do it but it fails with the new language my code is below if ...
0
votes
0answers
89 views

why server.transfer process slow in vb.net?

I need your help, I have a problem with server.transfer code in vb.net, it runs so slow.. My Question: Why does it run slowly (take 5 minutes to move between web pages (.aspx))? What should i check ...
0
votes
1answer
102 views

After Server.Transer Ajax doesn't work when requesting a page method

In the page_load of page A I Server.Transfer to Page B (Server.Transfer("B.aspx");) Then on page B I have a simple html button that has the onclick="ajaxFunction();"; function ajaxFuntion() { ...
0
votes
1answer
256 views

Server.Transfer losing post data

I am having trouble with a web application that is losing post data during Server.Transfer, but only in our production environment. The form is posted by the user and in turn Server.Transfer occurs, ...
0
votes
0answers
355 views

server.transfer throwing an error in asp.net

My asp.net app'd development code is located on in "L:\Projects\Webapp\webnet" folder. I have an IIS on my local machine. I developed this app and ran it locallly and everything runs fine. Now when ...
0
votes
0answers
28 views

Different URLs will load from different folders, but displayed same URLs

I have a website that has to display different template/theme depending on which URL the user come in with. For example: If I come in with www.White.com, I will need to display pages from ...
0
votes
1answer
463 views

asp .Net Server transfer, postback and Session issue

We've been developing a shop web app for the last 4 years. Now, we're adding a new feature, so the app would behave in two different ways depending on configuration: The first way is just a normal ...
0
votes
1answer
203 views

Server.Transfer to a page [closed]

I am using Sitecore and I have to show the first page in a collection of pages. Here is my code so far: private Item currItem = Sitecore.Context.Item; protected void Page_Load(object sender, ...
0
votes
1answer
110 views

Server.Transfer + Refresh Causing multiple inserts in to Database

I'm facing a problem which is as follows. In my button_Click event, Server.Transfer("~/LeaseOffer/AdSpaceDetails.aspx?Id=" + adRepo.SubmitPost(ad).ToString()); When I'm in the AdSpaceDetails.aspx ...
0
votes
0answers
127 views

VaryByCustom Cache not working when doing Server.Transfer

From a particular page, I either do a Server.Transfer or Response.Redirect based on certain conditions. if (condition) { redirectUrl = "search.aspx"; Server.Transfer(redirectUrl); } else { ...
0
votes
1answer
52 views

Does many “SERVER.TRANSFER”'s (in “case”) in ASP classic hurt the performance of the server?

I want to build this page with ASP classic: <% Dim depart depart = 5 Select Case depart Case 1 Server.Trasnfer "/check/noam/newDesign/test1.asp" Case 2 Server.Trasnfer ...
0
votes
2answers
1k views

How to set Response Header before Server.Transfer in Asp.Net?

I have a page where based on certain conditions I am either doing a Response.Redirect or Server.Transfer. Now I want to add a header for both the cases. So I am doing the following ...
0
votes
1answer
63 views

Transferring to a new server/DNS…LOST

I must be missing something obvious here. I have a client that currently does his hosting through Yahoo. I use WHM and have a reseller account through Hostgator. I set up a new account, and I put in ...
0
votes
1answer
49 views

Moving one add on website to a new cPanel host

For several years now I have freely hosted several local organizations web pages at no cost. One of those organizations wishes to move to their own server that they manage with their own server ...
0
votes
1answer
164 views

Server.Transfer() and http 301

Will a 301 be sent through a server.transfer? PageA.aspx: protected void Page_Load(object sender, EventArgs e) { Response.Status = "301 Moved Permanently"; ...
4
votes
3answers
3k views

Error: Unable to evaluate expression because the code is optimized

I am getting an error in my asp.net app that reads "Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack." protected void ...
0
votes
0answers
206 views

How to get Recent CommandArgument of RepeaterControl on Server.Transfer Method on next Page?

I am using a LinkButton in repeater control in PAGE1.aspx which has some CommandArguments passed through the linkbutton.On clicking the linkbutton i am redirecting to new page i.e PAGE2.aspx with ...
0
votes
1answer
667 views

Invalid viewstate error when posting back to same page

I'm having some issues with an Invalid Viewstate error and I can understand why it's happening but I don't know how to fix it so I'm hoping someone can help. I have a page which is similar to this ...
0
votes
2answers
334 views

Server.Transfer doesn't update all paths

Using Server.Transfer to show a page that informs the user that the web site is at maintenance mode. At global.asax: void Application_BeginRequest(object sender, EventArgs e) { if ...
0
votes
2answers
150 views

How to catch exceptions after Server.Transfer (whitout using customErrors)?

I will simplify the example, so let's say we have Page A, Page B and Page C Page A goes with base.OnInit() on page B, Page B throws an exception and will be redirected with Server.Transfer to Page ...
0
votes
5answers
1k views

Passing parameters using Server.Transfer but not using query string

I have a registration form and want to transfer the user to the success page, telling him that an email was sent to his email. I need to transfer his email from the register page to the success page. ...
0
votes
1answer
240 views

Classic ASP Redirecting Title Issue

Just wondering what limitations there are in ASP doing a Server.Transfer two levels? So a page transferring to another page that then transfers to one more page. Here is our current setup. In an ...
0
votes
3answers
570 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
440 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
165 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
343 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
381 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 ...
1
vote
3answers
324 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?
1
vote
1answer
762 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, ...
0
votes
3answers
2k 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 ...
1
vote
1answer
696 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 ...
2
votes
1answer
580 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
5k 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 ...
0
votes
2answers
300 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 ...

1 2