'/' 中的服务器错误应用。找不到资源。 (ASP.NET mvc 2 +内置网络服务器)

发布于 2024-10-07 12:58:05 字数 495 浏览 0 评论 0原文

我正在尝试为小型门户制作 MVC 2 Web 应用程序。 我从 VS 2010 中的模板开始,制作了几个其他 .aspx 页面(用于视图) Index.aspx(是模板的一部分)像他应该打开的那样打开,但是当我单击链接访问另一个 aspx 页面(我添加到模板中)时,他向我显示:

“/”应用程序中的服务器错误。 找不到资源。 描述:HTTP 404。您正在查找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。请检查以下 URL 并确保拼写正确。

请求的 URL:/Views/AccountPages/Aanvragen.aspx

版本信息:Microsoft .NET Framework 版本:4.0.30319; ASP.NET 版本:4.0.30319.1

当我将 Aanvragen.aspx 设置为启动页时,他向我显示了相同的消息。 我使用内置服务器(VS2010)。 当然,我检查了网址是否正确,确实如此。所以这肯定不是问题

有人可以帮助我吗?

多谢

I'm trying to make a MVC 2 web application for a small portal.
I started with the template in VS 2010 and made several other .aspx pages (for views)
Index.aspx (was a part of the template) opens like he should open, but when I click on a link to acces another aspx page (that I added to the template) he show me this:

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: /Views/AccountPages/Aanvragen.aspx

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1

When I set Aanvragen.aspx as startup page, he show me the same message.
I use a built in server (VS2010).
Of course, I checked if the url is correct and it is. So that is certaintly not the problem

Anyone that could help me ?

Thanks a lot

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

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

发布评论

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

评论(1

一身仙ぐ女味 2024-10-14 12:58:05

您根本不应该直接请求查看页面;一方面,ASP.NET MVC 附带的 web.config 会阻止对 /views 目录中所有视图的直接请求。

您可以链接到站点中其他位置的常规 Web 表单页面,例如根目录中的页面,但这实际上并不是 MVC 的使用方式。您可能想要寻找有关 ASP.NET MVC 的教程,因为您似乎不熟悉如何使用它。请访问 http://www.asp.net/mvc 网站。

You should not be requesting view pages directly at all; the web.config that comes with ASP.NET MVC blocks direct requests for all views in the /views directory, for one thing.

You can link to regular web forms pages elsewhere in your site, such as in the root directory, but that's really not how MVC is meant to be used. You may want to seek out a tutorial on ASP.NET MVC, as it seems you aren't familiar with how to use it. Check out the http://www.asp.net/mvc web site.

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