HTTP 404 您正在寻找的资源(或其依赖项之一)

发布于 2024-10-17 13:38:00 字数 208 浏览 0 评论 0原文

您好,我在 mvc2 asp 中创建了新应用程序,并且运行我的应用程序,生成以下错误如何解决此问题,我的 url 是 http://localhost:2620/asset/details/8

HTTP 404. 您正在查找的资源(或其依赖项之一)可能已被删除、名称已更改或暂时不可用。请检查以下网址并确保拼写正确。

hi i created new application in mvc2 asp and i run my application the following error are generate how to resolve this problem my url is http://localhost:2620/asset/details/8

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.

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

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

发布评论

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

评论(1

时光是把杀猪刀 2024-10-24 13:38:00

您遇到的问题是没有 ID 为 8 的资产。

您需要做的是创建一个 id 为 8 的资产,或者更好的是,向用户显示一条有意义的消息。

public ActionResult Details(int id)
    {
        //Assuming you are using the repository pattern
        Asset asset = assetRepository.GetAsset(id);

        if (asset == null)
            return View("NotFound");
        else
            return View(asset);
    }

之后,在资产视图目录中创建一个名为“NotFound”的视图,告诉用户一条有意义的消息。

请参阅 NerdDinner
为刚接触 MVC2 的人提供大量帮助的教程

The problem you have is that there is no asset with the ID of 8.

What you need to do is either create an asset with the id of 8, or better still, show a meaningful message to the user.

public ActionResult Details(int id)
    {
        //Assuming you are using the repository pattern
        Asset asset = assetRepository.GetAsset(id);

        if (asset == null)
            return View("NotFound");
        else
            return View(asset);
    }

After that create a view called 'NotFound' within the asset view directory, that tells the user a meaningful message

See the NerdDinner
Tutorials for lots of great assistance for people new to MVC2

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