2. 在页面中使用UrlRouting参数值
1) 在后台代码中使用Route的值
以下为引用的内容:
protected void Page_Load(object sender, EventArgs e) { string year = (string)RouteData.Values["year"]; string month = (string)RouteData.Values["month"]; string date = (string)RouteData.Values["date"]; }
|
2) 在页面上使用
以下为引用的内容:
<asp:Literal ID="literalYear" runat="server" Text="<%$RouteValue:year %>"></asp:Literal> -<asp:Literal ID="literal1" runat="server" Text="<%$RouteValue:month %>"></asp:Literal> -<asp:Literal ID="literal2" runat="server" Text="<%$RouteValue:date %>"></asp:Literal>
|
3) 在DataSource中使用RouteParameter
以下为引用的内容:
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:TestDb %>" SelectCommand="SELECT BlogID,BlogTitle FROM Blogs Where Category = @category"> <SelectParameters> <asp:RouteParameter Name="category" RouteKey="category" /> </SelectParameters> </asp:SqlDataSource>
|
4) 在页面上显示RouteUrl
以下为引用的内容:
<a href=''<%=GetRouteUrl("blogs",new {year=2010,month=05,date=05}) %>''>2010年5月1日的博客</a>
|
3. UrlRouting和UrlRewrite的区别
UrlRouting相对于Url重写是一个比较新的事物,UrlRouting的长处是可以做双向转换, |