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
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 |
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 |
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 |
Answer / p
http://support4.scriptlogic.com/kb/article.aspx?
id=13711&cNode=3I2R8J
| Is This Answer Correct ? | 1 Yes | 3 No |
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 |
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 |
What is a session http?
Using code explain Configuration Management
How does dataset acts in a disconnected fashion ?
What is skin in asp.net?
What are client activated objects?
How tooltip is set through code-behind in ASP.NET?
1.what is the application pool. 2.what is the HttpModile and Http Handler. 3.C# 3.0 Features ? 4.Anonoymous Type,methopd and claas in 3.0? 5.difference between statsic and const ? 6.session vs application 7.state management clint side and server side ? 8.Genric list 9.c# 3.0 vs 3.5
What is __ requestverificationtoken?
What is early binding and Late binding. Difference which is better ?
How could you modify xaml content from javascript?
How to create a db connection at one place/page so that we can use that connection for all pages/forms/windows.what r the steps ned to be performed if question not clear,let me know
What is http post action?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)