Cannot run project locally

  • Thread starter Thread starter VK
  • Start date Start date
V

VK

Hi,

I copied over our website(using ASP.NET & ASP), trying to set up a local
project on my pc.

While trying to run ASP coe, it comes back with some of the includes not
being found and trying ASPX page comes back with if request to save the
page. Is something missing.

thanks
 
In the ASPX instance it's probably becuase the Framework is notsetup correct so it does not know how to compile it in IIS. Tocheck to make sure the framework is installed correctly go toIIS and right click on the "Default Web Site". Click on the"Home Directory" tab and then click on the "Configuation". the.aspx extension should be on this list and referenced to either1.0 or 1.1 of the framework.

As for the ASP version of the site not working correctly itprobably because your includes do not use a virtual path tonavigate to them. Or they do use a virtual path and it is notincorrect. Check to see what the path is to the includes andduplicate it on your localhost. If it is a virutal path thesite would have to exists in the root directory (probably) toget this to work. Good luck.

Alan Washington
http://www.aewnet.com
Hi,

I copied over our website(using ASP.NET & ASP), trying to setup a local
project on my pc.

While trying to run ASP coe, it comes back with some of theincludes not
being found and trying ASPX page comes back with if request tosave the
page. Is something missing.

thanks
User submitted from AEWNET (http://www.aewnet.com/)
 
Sounds like there might be some development tools issues as well but
when you run locally one needs to change web.config to match the new
"location"
(even more so if .NET web app using a local DB too - DSN - data source name
changes etc.).
 
Back
Top