开发者

ASP.NET MVC - append GET value to every URL... ActionLink? Routing? How?

I'm after an elegant way to append a token to each URL in an ASP.NET MVC application. eg:

http://mysite.com/?token=81541858

From any given page, when a link is generated (eg through HTML.ActionLink) it should append the existing token to the new URL. eg:

HTML.ActionLink("Show me","Detail",new{id=5})

should produce: http://mysite.com/Product/Detail/5?token=81541858

What would be the best way to achieve this while keeping with the existing overall design. An ActionLink wrapper? Perhaps there's some ki开发者_C百科nd of routing-based solution?


There may be a more elegant MVC/routing solution, but a simple extension method should do the trick:

public static string TokenActionLink(this HtmlHelper html, 
                                     string linkText, 
                                     string actionName, 
                                     string controllerName, 
                                     int id, 
                                     int token)
{
   var anchorFormat = "<a href=\"{0}\">{1}</a>";
   var urlFormat = "{0}/{1}/{2}?token={3}";
   return string.Format(anchorFormat, string.Format(urlFormat, controllerName, actionName, id, token.ToString()), linkText);
}

Usage:

<%: Html.TokenActionLink("Show Me", "Detail", "Product", Model.Id, Model.Token) %>

Or maybe you could create a custom RouteValueDictionary:, and call into the regular ActionLink method from your custom one:

public static string TokenActionLink(this HtmlHelper html, 
                                         string linkText, 
                                         string actionName, 
                                         string controllerName, 
                                         int id, 
                                         int token)
{
     var rvd = new RouteValueDictionary(ViewContext.RouteData.Values);
     rvd["Token"] = token.ToString();
     return Html.ActionLink(linkText, actionName, controllerName, id, rvd);
}


Make a custom TokenActionLink extension method on HtmlHelper, inside of it get the current token value from the querystring and append it to the link querystring. You can have the same overloads as the normal ActionLink and the append..ation of the token key is transparent

public static MvcHtmlString TokenActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object routeValues)
{
    var token = htmlHelper.ViewContext.RequestContext.HttpContext.Request.QueryString["token"];
    var routeValuesDict = new RouteValueDictionary(routeValues);
    routeValuesDict["token"] = token;
    return htmlHelper.ActionLink(linkText, actionName, routeValuesDict);
}


I'd suggest a set of HtmlHelper extensions that use the source for the token and call the actual HtmlHelper extensions, adding the token to the RouteValueDictionary. You'll need to make sure to use your extensions in your views, though.

public static class HtmlHelperExtensions
{

    public static string TokenActionLink( this HtmlHelper helper, string text, string action, object routeValues )
    {
          var token = GetToken(helper);

          var values = new RouteValueDictionary();
          if (routeValues != null)
          {
              values = new RouteValueDictionary( routeValues );
          }
          if (!values.ContainsKey( "token" ))
          {
              values.Add("token", token );
          }

          return helper.ActionLink( action, values );
    }

    ... other custom helpers for different signatures...

    private static string GetToken( HtmlHelper helper )
    {
        ...get token from session or request parameters...
    }
}

Used as:

<%= Html.TokenActionLink( "action", new { id = 5 } ) %>


You can append the token like this.

HTML.ActionLink("Show me","Detail",new{id=5, token=myTokenVariable})
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜