This is somewhat related to another question i've asked but i figure why not ask it seperately.
If i were to place something like the following in aview
<td><img src='<%= Url.Action( "DisplayImage" , "User" , new { id = item.id} ) %>' alt="" /></td>
Is it supposed to display this
<td>
<img src='/User.mvc/DisplayImage?id=U00915441' alt="" />
</td>
or would the src actually be replaced with the results of the UserController GetImage Action?
Thanks