What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?
Answer Posted / x
Please Ignore:
function opennewsletter(){
emailwindow=dhtmlmodal.open
('EmailBox', 'iframe', 'newsletter.aspx?
name=bala', '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 ? | 2 Yes | 2 No |
Post New Answer View All Answers
Why do we need asp.net?
How can we pass info between 2 asp.net pages?
Which namespace is used by ado.net?
Is asp.net core faster?
What is the concepts of globalization and localization in .net?
What's the ASP.Net Application life cycle?
How can we Validate a Controls in ASP.NET page using JavaScript?
To get the values in two different controls to match which control you use it?
What is the difference between sealed vs static class?
What are the steps to follow to host a web application on a web server?
How to deploy/publish webservices?How many ways?Plz explain me
How many types of cookies are available in asp?
How to register exception filter globally?
Why is it preferred to not use finalize for clean up?
Are cookies stored on server or client?