Where is the starting entry point of asp.net

  • Thread starter Thread starter hon123456
  • Start date Start date
H

hon123456

Dear all,

I have download a open source c sharp program named as
cuyahoga. The solution ontains

10 project. I can find the starting project. But in the starting
project, I cannot find which file is the

starting point for the project. How can I figure out which file is the
starting point and then I can

debug it? Thanks.
 
An ASP .NET Web Project is essentially a website. As such, whatever file
that bears the name of the web server's "default" value (on IIS that's
usually "default.htm", "default.asp", or default.aspx") that is placed in
the root of the web application's folder structure will be the one that
usually will be accessed first. But, remember, that on the web, there's no
guaranted that visitors will enter your application through the "front
door". Someone might bookmark a page deep within the site and try to
re-enter at that point.

-Scott
 
Dear all,

          I have download a open source c sharp program named as
cuyahoga. The solution ontains

10 project. I can find the starting project. But in the starting
project, I cannot find which file is the

starting point for the project. How can I figure out which file is the
starting point and then I can

debug it? Thanks.

Select starting project in the Solution Explorer and right click to
open Properties. In the Web Tab you will see what page (or
application) was selected as a Starting Action.
 
Back
Top