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
Define data caching?
Where do we store our connection string in asp.net application?
How to prepare culture-specific formatting in .net.
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
Explain About duration in caching technique
What is base class of button control in .net?
How is mvc different from asp.net? : Asp.Net MVC
Can you explain the basic use of dataview?
What is class and object in asp.net?
What is asynchronous call?
What is redirecting behavior?
What is autopostback in dropdownlist in asp net?
What is OSI layer? Explain different layers.
Why asp.net mvc is better than asp.net? : Asp.Net MVC
How many types cache in asp net?