asp.net,我设法发布我的网站,但不知道如何访问它

发布于 2024-12-26 02:10:38 字数 412 浏览 0 评论 0原文

我发布了一个简单的 ASP.net 网站,引用了此链接: http://msdn.microsoft.com/en-us/library/1y1404zt%28v=vs.80%29.aspx

我成功发布我的网站按照指定的方式复制到 C:\testapp,并且我按照指定的方式共享了该文件夹。然后,此文档表明我应该能够神奇地通过 http://localhost/testapp/default.aspx 访问我的网站

似乎不起作用...这里缺少什么?

I published a simple ASP.net website referring to this link : http://msdn.microsoft.com/en-us/library/1y1404zt%28v=vs.80%29.aspx

I managed to publish my site to C:\testapp as specified, and I shared the folder as specified. Then, this documentation suggests that I should magically be able to access my site via http://localhost/testapp/default.aspx

Doesn't seem to work... What is missing here ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

好倦 2025-01-02 02:10:38

如果您仔细阅读演练,您会在发布网页后和打开网页之前注意到以下几点:

创建指向目标文件夹的 IIS 虚拟目录。

因此,为了查看网页,您必须安装 IIS 并将其配置为将本地路径视为虚拟目录。

If you read the walk-through carefully you will notice the following point just after publishing the webpage and before opening your webpage:

Create an IIS virtual directory that points to the target folder.

So, in order to see the webpage you must have IIS installed and configured to treat your local path as a virtual directory.

緦唸λ蓇 2025-01-02 02:10:38

您需要在 IIS 中设置一个网站并将其指向此位置。然后浏览到网站网址。

You need to setup a website in IIS and point it to this location. Then browse to the site url.

無處可尋 2025-01-02 02:10:38

最简单的方法是按如下方式发布:

Publish Method - Web Deploy
Service URL - localhost
Site/Application - Default Web Site/TestApp

除非您以不同方式配置 IIS,否则它应该将您的站点内容发布到以下文件夹。

C:\inetpub\wwwroot\TestApp\

,您应该能够使用 URL http://localhost/TestApp/default.aspx 访问它

然后 不,请检查 IIS(控制面板 -> 管理工具 - Internet 信息服务)您的站点应该列在树视图中

如果没有,请添加一个虚拟目录

Alias : TestApp
Location : C:\TestApp\

尝试访问您的再次访问该网站,如果您仍然遇到问题,请尝试执行通过在命令提示符中键入iisreset来重置 IIS

Simplest method would be to publish as follows:

Publish Method - Web Deploy
Service URL - localhost
Site/Application - Default Web Site/TestApp

It should publish your site contents to the below folder unless you configured IIS differently.

C:\inetpub\wwwroot\TestApp\

You should then be able to access it using the URL http://localhost/TestApp/default.aspx

If not, check IIS (Control Panel -> Administrative Tools - Internet Information Services) your site should be listed in the tree view

If not, add a Virtual Directory

Alias : TestApp
Location : C:\TestApp\

try access your site again, if you're still having problems, attempt to do an IIS Reset by Typing iisreset into Command Prompt

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文