Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass routeValues that contains hyphen via actionlink in asp.net mvc 5

I have an actionlink in view, I need it to pass parameter containing hyphen (-). Changing the name convention is not possible. How do I do this?

<li>@Html.ActionLink("abc", "abc", "abc", new { area = "",sap-ie="Edge" }, new { id = nav_abc"})</li>

This one gives me an error "Invalid Anonymous Type Declarator" since it contains hyphen. Basically I need the actionlink to generate html like below.

<a href=".../abc?sap-ie=Edge" id="nav_abc" >abc</a>
like image 894
Daniel W Avatar asked Dec 17 '14 17:12

Daniel W


People also ask

How to give ActionLink in MVC?

Use an underscore instead of a dash and MVC will automatically replace the underscore with a dash in the rendered HTML, here it is: @Html. ActionLink("Edit", // <-- Link text. "Edit", // <-- Action Method Name.

What is HTML ActionLink ()?

ActionLink(HtmlHelper, String, String, String, String, String, String, Object, Object) Returns an anchor element (a element) for the specified link text, action, controller, protocol, host name, URL fragment, route values, and HTML attributes.

What is Ajax ActionLink?

The Ajax. ActionLink() helper method returns an anchor element that contains the URL to the specified action method; when the action link is clicked, the action method is invoked asynchronously by using JavaScript.


2 Answers

If you are sure the url won't change much from the structure you've specified you could use an anchor tag and build the url from Url.Action.

<a href='@Url.Action("abc", "abc")?sap-ie=Edge'>abc</a>

The whole point of htmlhelpers are to help generate html anyway .. so if its getting in the way, you can drop down to html proper and just get it done.

like image 67
scartag Avatar answered Sep 21 '22 13:09

scartag


Just wanted to point out that it's not that the underscore trick only works with data attributes, it's that it only works with passing HTML attributes in general. This is because it makes sense to change underscores to hyphens in the context of HTML, as underscores aren't use in HTML attributes. However, it's perfectly valid for you to have a route param with an underscore, so the framework can make no assumptions about your intent.

If you need to pass route values with hyphens, you have to use a RouteValueDictionary. This is simply a limitation of anonymous objects that can't be overcome.

<li>@Html.ActionLink("abc", "abc", "abc", new RouteValueDictionary { { "area", "" }, "sap-ie", "Edge" } }, new RouteValueDictionary { { "id", "nav_abc" } })</li>

Unfortunately, there's no ActionLink overload that accepts both a RouteValueDictionary for routeValues and an anonymous object for htmlAttributes, so switching one means switching both. You can technically use any IDictionary implementation for the htmlAttributes param, so you may prefer to use just new Dictionary { { "id", "nav_abc" } }. It's up to you.

like image 23
Chris Pratt Avatar answered Sep 21 '22 13:09

Chris Pratt