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
How asp.net mvc differs from asp.net web forms? : asp.net mvc
What is a query string in a url?
What is the difference between application state and session state in asp net?
What does asp.net stand for?
Do I need to have the latest version of windows media player installed?
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.
What is difference between cookies and cache?
How do I upload a file from my ASP.NET page?
What is the significance of ASP.NET routing?
What is an asp.net validator? And, mention its types.
What is the life cycle of web page?
What is windows active directory authentication?
What does the orientation property do in a menu control?
Is it possible for me to change my aspx file extension to some other name?
What is page request in asp.net?