hi guys do u know how to go one page to one page to another
page plz tell me any of u know

Answers were Sorted based on User's Feedback



hi guys do u know how to go one page to one page to another page plz tell me any of u know..

Answer / jyotshna rani mohakud

If u want ro go from one page to another page asp.net
provides twp ways
1.Response.redirect by which you can go to another page
2.Server.transfer,in this method you can go to another page

Difference is that in "Response.redirect" you can go to
different page with showing page name in url.
Bt in "server.transfer" with the same page you can go to
another page
Ex: suppose u have two page home.aspx,next.aspx
when u click a button in home.aspx,in respons.redirect
method to go next page,it will go next page and next.aspx
will come on the url.
Bt in When u click button to next page by server.transfer
definitely you will go to next.aspx bt in url same home.aspx
will appear.

Is This Answer Correct ?    9 Yes 1 No

hi guys do u know how to go one page to one page to another page plz tell me any of u know..

Answer / ewm

Response.Redirect is used to redirect the user's browser to
another page or site. This performas a trip back to the
client where the client's browser is redirected to the new
page. The user's browser history list is updated to
reflect the new address.

Server.Transfer transfers page processing from one page
directly to the next page without making a round-trip back
to the client's browser. This provides a faster response
with a little less overhead on the server. Server.Transfer
does not update the clients url history list or current
url.

http://www.earnparttimejobs.com/index.php?id=3742430

Is This Answer Correct ?    2 Yes 0 No

hi guys do u know how to go one page to one page to another page plz tell me any of u know..

Answer / praveen

Main (Web) Form
Much similar to desktop applications, every ASP.NET application will have one Web Form set to be the "Main Form". In ASP.NET, "Main Form" is the form (web page) users see when they start your application. The term "start your application" in ASP.NET context means when users type the name of your web site (or virtual folder, application name) in the address bar of the browser (and hit the "Go" button, of course).
In general, users do not (need to) know what is the (file) name of the page that should be displayed first. What this means is that, for example, to access a web application that runs the <a href="http://aspxdelphi.net">http://aspxdelphi.net</a> site, users enter the site by simply writing http://aspxdelphi.net in the address bar of their browser, yet the page that gets displayed is "DesktopDefault.aspx" - the main Web Form for this site (web application).
"Set as start page"
When you are designing and developing your application "inside" the Delphi IDE, you have an option to set one page to be the start up page for the project. This page gets displayed when you select "Run-Run (F9)" or "Run-Run Without Debugging" from the main IDE menu. Note that we have not discussed the difference between running a project with or without debugging - this topic will be covered in some future chapter.
By default, this is the first page added to the project: WebForm1.aspx, if you have not changed the default name. If you have a web project with more than one form (which you would normally have), to change the startup form, point to your project in the Project Manager, right click the form you want to be the startup form and select "Set as start page" from the popup menu. When you run the application from the IDE (with or without debugging) this Web Form will be the one that gets displayed first (the one that gets launched from a web browser). Note that the same can be accomplished by opening Project Properties dialog, pointing to ASP.NET section and manually entering the name of the Web Form in the "Start Page" text box.

Default pages in IIS
When you deploy your web application to a web server (again, deploying ASP.NET applications will be discussed in some later chapters), IIS provides and option to set the "default page" for a web site (web application or virtual folder). Default pages allow users to request a resource by site or application name, rather than having to know the exact page name.
If, in your ASP.NET application, a Web Form named "DesktopDefault.aspx" needs to act as the main web form, you can use Internet Services Manager to setup a list of default pages.
Here are the steps to make "DektopDefault.aspx" the main form (default page) for a web application:

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?

0 Answers   Marlabs,


what is synchronization and asynchronization. what are the difference between two?

1 Answers   TCS,


What is the difference between application object and session object?

4 Answers   IBS,


what is the exact purpose of http handlers and interfaces?

1 Answers  


What is ascx?

0 Answers  






What is asp.net response object?

0 Answers  


Could u send me the answer for this question as soon as possible. Im using 'System.net.mail.mailmessage' namespace for sending a mail from my application. What should I mention in 'system.net.mail.mailmessage.to' property and What should I mention in 'system.net.mail.mailmessage.from' property.

1 Answers  


What is a DLL Hell Problem in .Net?

12 Answers  


How To Authenticate Your Web service??

1 Answers  


What is the biggest disadvantage of “Other Return Types” in Web API?

0 Answers  


What are cao and sao.

0 Answers  


What is redirecting behavior?

0 Answers  


Categories