I want to add a clickable image using a css class to an anchor tag in an asp mvc 2 application and leave the url section empty(since I have javascript code to load a pop up based on the id given to the anchor tag).

Currently my code is :

<%= Html.ImageActionLink(null, null, "~/UI/Forms/Css/Images/get-reservation.png", null, new { @Id = "getReservation" }, new { @Class = "image" })%>

Info: I added the Id, since I am using javascript to load a pop up when the getReservation id is clicked. The image class just adds padding.

current css code :

.image
{
   padding-left: 10px;  
}

What I want:

To remove the path below from my ImageActionLink helper

"~/UI/Forms/Css/Images/get-reservation.png"

and define a css class:

.get-reservation
{
background: url('images/get-reservation.png') no-repeat center;
height: 20px;
width:20px;
}

and do something like this:

<%= Html.ActionLink("#", null, new { @Class = "get-reservation image" }, new { @Id = "getReservation" })%>

But what I get in the browser is something like this :(And the image fails to appear.)

enter image description here

Expected outcome:

enter image description here

Any help is appreciated.

Thanks

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Using ActionLink in this case is unnecessary, just use regular image or div

<div class="get-reservation image" id="getReservation"></div>

You can add this to the style, to make it more like a link:

border: none;
cursor: pointer; /* hand cursor */

Finally, when you select it to add the click handler, if you were using $('a.get-reservation') change to $('div.get-reservation') or simply $('.get-reservation')

link|improve this answer
Sorry This is the correct answer but I prefer a html helper – Haxed May 5 '11 at 6:04
Helpers are useful for dynamic elements, this one is static, so you really shouldn't use them – ariel May 5 '11 at 18:41
feedback

I think you should do this:

<%= Html.ActionLink("", "#", null, new { @Id = "getReservation", @Class = "get-reservation image" })%>

Note that the first parameter is the text to show, that's why you got a '#' on screen before. The third parameter is a null RouteValues, and the fourth is for the additional html attributes.

Here you have the method definition: http://msdn.microsoft.com/en-us/library/dd492124.aspx

Hope to have helped you. Cheers

link|improve this answer
I am getting this error: Server Error in '/' Application. Value cannot be null or empty. Parameter name: linkText [Thanks for trying] – Haxed May 5 '11 at 6:02
Mmm, could you try sending &nbsp; instead of ""? – Edgar Villegas Alvarado May 5 '11 at 6:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.