hi guys do u know how to go one page to one page to another
page plz tell me any of u know
Answer Posted / 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 View All Answers
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
What is a master page and what does it do?
How can you use a custom controls in ASP.NET application?
How does asp net store session ids by default?
What is difference between web config and global asax?
What websites use asp.net?
What is the maximum number of classes that can be contained in one dll file?
Why and where this web.config file is used?
What is a gridview in asp.net?
6. Tell us about a time when you failed to meet a deadline. What were the repercussions?
What is css and what is it used for?
What is validation in asp.net?
Can you explain autopostback?
How does cookies work in asp net?
How do we ensure view state has not tampered?