Questions tagged [server.transfer]
106 questions
0
votes
1 answer
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 order to display the last modified date at the top…
Steve Zaj
0
votes
2 answers
POST HTML
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 an external .aspx page. The requirement say it…

socialMatrix
- 1,423
- 5
- 20
- 36
0
votes
1 answer
Button Click Not Working after Server.Transfer() method
Question: How Come the Button Click on the aspx page that was transferred to does not fire correctly, after the first aspx page transferred focus to it using the Server.Transfer() method in C#.
The Answer: When the button is clicked in the…

Sniff
- 11
- 3
0
votes
1 answer
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 ?

Pato
- 679
- 8
- 24
0
votes
2 answers
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 method. In this situation, the browser will show the…

zanhtet
- 2,040
- 7
- 33
- 58
0
votes
1 answer
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 test2 page in the browser and test1 page address…

zanhtet
- 2,040
- 7
- 33
- 58
0
votes
1 answer
WebForm Server.Transfer - Variables are not being recorded in downloaded files
I'm using Server.Transfer and in the 2nd place I have a number of labels that are updated with a Request.Form["textbox_text"];
This all works really well, but the problem is I also want to write the content in that textbox to file
like a word…

bacardi
- 1
0
votes
0 answers
Server.Transfer Issues
Here is what I am trying for:
I have the first page (ListTraining.aspx) whose job is to display a list of trainings and allow you to select to Edit or View that training. the 2nd page (EditTraining.aspx) is suppose to give you the ability to edit…

Guy Cothal
- 1,268
- 1
- 10
- 20
0
votes
2 answers
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 their credentials.
The login portal will be a…

mrdnk
- 656
- 9
- 24
0
votes
1 answer
Server.Transfer, Response.Redirect, and ApplicationInstance.CompleteRequest work around in ASP.Net
I am trying to add async features to an existing asp.net forms application. But I am running into problems with page transfer/redirection. Reason being in much of the existing code redirects/transfers are made from utility classes or custom controls…

stymie2
- 101
- 10
0
votes
2 answers
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 ip address will then return 'something' and i…

Sam Parrish
- 1,377
- 1
- 11
- 17
0
votes
1 answer
How do i call an aspx page from within another aspx page and not wait for it to complete?
I want to call an aspx page that creates a PDF file from current aspx page but I don't want to wait for the other page to complete. It takes a long time for the PDF to be created and the user doesn't care that it is being created.
I tried…

Joe Schmucker
- 173
- 1
- 10
0
votes
1 answer
How can I do Server.Transfer() to get Web2 site Page from Web1 site
I have two web site Web1 and Web2 on same server and same IIS.
Is there any way I can do Server.Transfer() to get Web2 site Page from Web1 site.
Web1 Site code:
protected void btnGoToWeb2Page_Click(object sender, EventArgs e)
{
…

user3540425
- 29
- 5
0
votes
0 answers
ASP.NET - Server.Transfer with url in browser updated
I am not sure if I will be able to explain this clearly.
I have a page on the website, lets say www.example.com/mypage/
Due to some business reason I would like to redirect the user to another page in the same website, say…

samar
- 5,021
- 9
- 47
- 71
0
votes
3 answers
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 me?

kusanagi
- 14,296
- 20
- 86
- 111