Has anyone written one? I want it to behave like a link but look like a button. A form with a single button wont do it has I don't want any POST.
|
feedback
|
|
The easiest way to do it is to have a small
You can of course write a very simple extension method that takes the button text and a EDIT: In response to cdmckay's answer, here's an alternative code that uses the
Also, as opposed to cdmckay's code, this one will actually compile ;) I am aware that there might be quite a lot of overhead in this code, but I am expecting that you won't need to run it a lot of times on each page. In case you do, there is probably a bunch of optimizations that you could do. | |||||||||
feedback
|
|
If you want it to behave like a link but "look" like a button just use the ActionLink with a CSS Class.
Here is the CSS for a Button that I am using.
| ||||
|
feedback
|
|
Two versions to make an extension for...
Unobtrusive version:
If you have users which do not have javascript turned on, then form tag is the way to go. Although, this make the situation difficult if your link is already within a form. However, you could change the action and method to GET. | ||||
|
feedback
|
|
Code for Tomas' answer:
| |||||||
feedback
|
|
Avoid html-encoding the string in the view:
| ||||
|
feedback
|
|
I modified Tomas Lyckens code to return a MvcHtmlString instead of just a string. This makes sure the output is HTML, not escaped as text. I also xml-documented it nicely. Thanks to Tomas who did all the real work.
| |||
|
feedback
|
|
Here is a VB.NET version with one extra thing, the controller and routes parameters are optional so it can be used without repeating the controller name if it's the same as the current/default controller for the page.
Then it can be invoked like the other other MVC controls, with minimum code on the page. This should really have gone into the core MVC framework from the start; it seems such an obvious requirement. I think buttons are much more intuitive for the user when performing actions which create or change things, rather than links. Links should just navigate to related information (not change anything). If i had a grid I would use ActionLink for any data navigation (e.g. click a product name to goto product page) but only ActionButton for real "actions" like edit and delete. | |||
|
feedback
|