开发者

Querystring formatting in asp.net MVC 2

Seems like a straitforward question but I can't quite figure it out myself...

I have an actionlink like so

Html.ActionLink( "Test", "test", new { q = "search+twitter" } )

This produces a url string as follows

http://myserver/test?q=search%2Btwitter

But i would like to preserve the plus sign (which i assume is being UrlPathEncoded) so that I get the开发者_JS百科 following url

http://myserver/test?q=search+twitter

Is there an easy way to do this whilst still using Html.ActionLink ?


After some more googling, i reworded the question in this post. Using the answer from that question I was able to put together a suitable routing extension method which i include below.

public static class RouteCollectionExtensions
{
    public static void CustomMapRoute( this RouteCollection routes, string name, string url, object defaults )
    {
        routes.CustomMapRoute( name, url, defaults, null, null );
    }

    public static void CustomMapRoute( this RouteCollection routes, string name, string url, object defaults, string[] namespaces )
    {
        routes.CustomMapRoute( name, url, defaults, namespaces, null );
    }

    public static void CustomMapRoute( this RouteCollection routes, string name, string url, object defaults, string[] namespaces, object constraints )
    {
        if ( routes == null )
            throw new ArgumentNullException( "routes" );

        if ( url == null )
            throw new ArgumentNullException( "url" );

        var route = new CustomRoute( url, new MvcRouteHandler() )
        {
            Defaults = new RouteValueDictionary( defaults ),
            Constraints = new RouteValueDictionary( constraints ),
            DataTokens = new RouteValueDictionary()
        };

        if ( (namespaces != null) && (namespaces.Length > 0) )
        {
            route.DataTokens["Namespaces"] = namespaces;
        }

        if ( String.IsNullOrEmpty( name ) )
            routes.Add( route );
        else
            routes.Add( name, route );
    }
}

public class CustomRoute : Route
{
    public CustomRoute( string url, IRouteHandler routeHandler )
        : base( url, routeHandler ) { }

    public CustomRoute( string url, RouteValueDictionary defaults, IRouteHandler routeHandler )
        : base( url, defaults, routeHandler )
    { }

    public override VirtualPathData GetVirtualPath( RequestContext requestContext, RouteValueDictionary values )
    {
        var path = base.GetVirtualPath( requestContext, values );
        if ( path != null )
        {
            path.VirtualPath = path.VirtualPath.Replace( "%20", "+" );
        }
        return path;
    }
}

This extension is then called by the RegisterRoutes method in global.asax like so...

        routes.CustomMapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional },  // Parameter defaults
            new string[] { "MyControllers" }
        );


The plus sign (after encoding) represents a space before encoding.

So search+twitter will become "search twitter" on post back, and to achieve that effect, you can simply use "search twitter" in the first place:

Html.ActionLink( "Test", "test", new { q = "search twitter" } )

which will generate following url

http://myserver/test?q=search%20twitter

Hope this helps.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜