当前位置 : 主页 > 网络编程 > ASP >

asp.net – ASP MVC使用超链接控制

来源:互联网 收集:自由互联 发布时间:2021-06-24
我有以下超链接控件: asp:HyperLink ID="hypTest" runat="server" NavigateUrl="~/Views/TestFolder/TestPage.aspx" Text here/asp:HyperLink 但它找不到页面 – 尽管页面确实存在.我得到的错误是: Description: HTTP 40
我有以下超链接控件:

<asp:HyperLink ID="hypTest" runat="server" NavigateUrl="~/Views/TestFolder/TestPage.aspx" >
    Text here
</asp:HyperLink>

但它找不到页面 – 尽管页面确实存在.我得到的错误是:

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/TestFolder/TestPage.aspx

我的猜测是,波浪号(〜)在这里不起作用.如果是这种情况那么为什么,我该如何解决它呢?

如果您使用的是MVC,则应使用HtmlHelper.ActionLink帮助函数.您目前正在使用webforms超链接控件.假设您有默认路由,您应该可以使用

<%=Html.ActionLink("Text here", "TestPage", "TestFolder")%>

您当前收到404错误,因为〜/ View文件夹中的页面默认被阻止.您通常会在〜/ TestFolder / TestPage请求页面.

网友评论