Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
144 views
in Technique[技术] by (71.8m points)

c# - publishing asp.net application to the internet

i have a web app that runs locally on our network. the way users access it is by going to myserver:80/site/default.aspx

i reconfigured the settings to display the website to the internet.

the way i am accessing it now is:

ipaddress/site/default.aspx

and getting the following error:

Server Error in '/' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 

Requested URL: /site/default.aspx

so it seems as if it does see the site, but the site does not want to grant access?

what am i doing wrong?

edit if the consensus is that it doesnt actually see the webpage. then again i would like to know what i am doing wrong

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

When moving from Visual Studio's built-in web server to IIS, often you need to simply remove the top level directory form the URL:

ipaddress/default.aspx

or simply

ipaddress

if default.aspx really is a default.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...