What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?

Answers were Sorted based on User's Feedback



What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over..

Answer / avinash

server.transfer() is used to request a page it directly
requests the page whereas response.redirect() is used it
first say browser to call the page.
Exampme:

if((name.text=="avinash")&&(password=="niit"))
{
response.redirect("mypage.aspx");
}
else
{
server.transfer("error.aspx");
}

Is This Answer Correct ?    0 Yes 0 No

What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over..

Answer / x

<script type="text/javascript" language="javascript">
function HideChild(){
parent.emailwindow.hide();
parent.location.replace("DisplayRec.aspx");
window.open("http://wwww.google.com");
}
</script>

Is This Answer Correct ?    1 Yes 2 No

What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over..

Answer / x

select Distinct [Subject ID], [Date of Birth],[Gender],
[Race] from
(
select vm1.spid as [Subject ID],
(case when objd1.objectdesignationtypeid = 4 then
vmd1.fieldvalue end) as [Date of Birth],
(case when objd1.objectdesignationtypeid = 8 then
vmd1.fieldvalue end) as [Gender],
(case when objd1.objectdesignationtypeid = 9 then
vmd1.fieldvalue end) as [Race]
from Recon.dbo.AAA999809_Visitmodule
vm1,Recon.dbo.AAA999809_Visitmoduledetail vmd1,
Recon.dbo.recon_objectdesignation objd1
where vm1.vuid = vmd1.vuid and
vmd1.objectid = objd1.objectid
and vmd1.objectid is not null and objd1.objectid is not null

Is This Answer Correct ?    0 Yes 1 No

What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over..

Answer / p

http://support4.scriptlogic.com/kb/article.aspx?
id=13711&cNode=3I2R8J

Is This Answer Correct ?    1 Yes 3 No

What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over..

Answer / a

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Runtime.InteropServices.ComTypes;
using System.Data.OleDb;
using System.IO;

public partial class ReadExcel : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {
string strFilePath = @"D:\Development\Test.xlsx";
string strBatchPath = @"D:\Development\test.txt";
try {
string strConnectionString = string.Empty;
//strConnectionString =
@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +
strFilePath + @";Extended Properties=""Excel
8.0;HDR=YES;IMEX=1""";
strConnectionString =
@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" +
strFilePath + @";Extended Properties=""Excel 12.0
Xml;HDR=YES;IMEX=1""";
OleDbConnection cnCSV = new OleDbConnection
(strConnectionString);
cnCSV.Open();
OleDbCommand cmdSelect = new OleDbCommand
(@"SELECT * FROM [Sheet1$]", cnCSV);
OleDbDataAdapter daCSV = new OleDbDataAdapter();
daCSV.SelectCommand = cmdSelect;
DataTable dtCSV = new DataTable();
daCSV.Fill(dtCSV);
cnCSV.Close();
daCSV = null;

StreamWriter sr = File.AppendText(strBatchPath);
string cmd = string.Empty;
for (int i = 0; i < dtCSV.Rows.Count; i++) {
cmd = "xcopy /Y \"" + dtCSV.Rows[i][0]
+ "\" " + "\"D:/\"";
WriteText(cmd, sr);
}
sr.Close();
} catch (Exception ex) {
} finally {
}
}

public void WriteText(string message, TextWriter tr) {
tr.WriteLine(message);
tr.Flush();
}
}

Is This Answer Correct ?    0 Yes 2 No

What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over..

Answer / c

Please Ignore:

function opennewsletter(){
var name = 'Bala';
emailwindow=dhtmlmodal.open
('EmailBox', 'iframe', 'newsletter.aspx?name=' +
name, 'Newsletter Signup
page', 'width=350px,height=200px,center=1,resize=0,scrolling
=1')
}

Put this in the modal page:

if (Request.QueryString["name"] != null &&
Request.QueryString["name"].ToString() != string.Empty)
{
name = Request.QueryString["name"].ToString
();
}

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More ASP.NET Interview Questions

What is marshalling ? Is it a part of asp.net ?

0 Answers   MCN Solutions,


How would you enable impersonation in the web.config file?

0 Answers  


Disable Session State at the Page Level

1 Answers  


Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box?

1 Answers  


Describe a Windows Service and its lifecycle ?

0 Answers   Siebel,






What are session state modes?

0 Answers  


what is roles in asp.net

2 Answers  


1. Briefly describe your ideal job?

1 Answers   Swatz Oils, Swetz Oil,


How does asp net store session ids by default?

0 Answers  


Tell About Global.asax ?

3 Answers   Keane India Ltd,


There is a login page that has two text boxes with required field validators on it. The page has a login and cancel button. How can we ensure that the click on the cancel button doesnt fire a validation event.

2 Answers   Proteans,


What does the "EnableViewState" property do? Why would I want it on or off?

2 Answers   Photon Infotech, Siebel Systems, Syntax Softtech,


Categories