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
How does viewstate work?
Where do we store our connection string in asp.net application?
Securitywise What are the Enhancements in 2.0?
What are the 3 types of web?
Explain the difference between an exe and a dll?
What is difference between View State and Hidden Field in ASP.NET?
Is web config mandatory?
What are the advantages of Web API?
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
Can we add code files of different languages in app_code folder?
What is mvc in asp.net tutorial? : Asp.Net MVC
What is application state?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
When you are running a component within ASP.NET, what process is it running within on Windows XP? Windows 2000? Windows 2003?
How to use multiple scriptmanager controls in a web page?