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 can you implement encapsulation in asp.net?
Explain weak typing and strong typing.
Why do you use the app_code folder in asp.net?
What is the behavior of a Web browser when it receives an invalid element?
What is jade template engine?
How does session work?
What is the difference between dynamic SGA and static SGA?
What is an il?
Why do we need a web application session?
How can you display all validation messages in one control?
What is caching? Explain.
What are type/key pairs in client script registration?
Is it possible to write code in many languages in one asp.net project?
What is Web Server Control Templates.?
What is meant by server side scripting?