What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?
Answer Posted / 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 View All Answers
What is the caspol.exe tool used for?
Can you explain how ASP.NET application life cycle and page life cycle events fire?
What is advantage of code behind coding in ASP.NET?
What's the use of response.output.write()?
Explain the concept of event bubbling in ASP.NET?
What is the difference between visual basic and asp.net?
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
How ASP and ASP.NET page works? Explain about asp.net page life cycle?
What does a switch do?
What is difference between view state and session state?
What is the difference between session and viewstate in asp.net?
Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc
What are the advantages of Web API?
What happens if an ASP.NET server control with event-handling routines is missing from its definition?
Explain in what order a destructors is called.