asp.net FriendlyUrl和查询字符串内联处理

时间:2014-04-19 08:05:31

标签: c# asp.net

我使用FriendlyUrl

Nuget成功安装了Install-Package Microsoft.AspNet.FriendlyUrls -Pre

现在我想在我的默认页面中执行此操作:

<a href="<%: FriendlyUrl.Href("~/About","Watch") %>">About.aspx</a> 

但发生了此错误:'FriendlyUrl' does not exist in the current context

我该如何解决?

1 个答案:

答案 0 :(得分:2)

在页面顶部添加以下行:

<%@ Import Namespace="Microsoft.AspNet.FriendlyUrls" %>