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


Please Help Members By Posting Answers For Below Questions

What is AutoEventWireup attribute for ?

602


What is repository pattern in mvc.net? : asp.net mvc

528


How can you send an email message from an asp.net web page?

525


What is the difference between mvc and asp.net? : Asp.Net MVC

480


What are the benefits of view state?

556






Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?

532


Is asp.net is a programming language?

496


What is the life-span of the items in the viewstate?

503


What is a master page and what does it do?

536


How to improve performance of web application asp.net mvc? : Asp.Net MVC

495


Please brief not about xsd,xslt & xml?

546


What does asax stand for?

524


What is the asp.net mvc folder conventions? : asp.net mvc

468


How can we create a website?

538


Take a Large textbox allow to type any data. Task 1:display the count of vowels in a lable on key press event of the textbox Task 2:dispaly count of dates in a lable when dates in following foramats:dd/mm/yy , mm/dd/yy , yy/mm/dd. Task3:compare 2 dates and display both are same or not which dates are in dd/mm/yy and mm/dd/yy farmats.

2593