The routelink tag has no wiki summary.
26
votes
4answers
5k views
What's the difference between RouteLink and ActionLink in ASP.NET MVC?
I think that the title pretty much sums it up:
What's the difference between RouteLink() and ActionLink() in ASP.NET MVC?
i.e. when do you use Html.RouteLink() and when do you use Html.ActionLink() ...
2
votes
1answer
429 views
Html.ActionLink, Url.ActionLink and Html.RouteLink return empty urls
Html.ActionLink, Url.ActionLink and Html.RouteLink return empty urls, even though the target url is valid and displayed properly from url?
I played around with the route but, it keeps return empty ...
2
votes
2answers
4k views
ASP.net MVC RouteLink and optional routeValues
I'm trying to figure out how to conditionally set a routeValue which is optional.
I have
<%= Html.RouteLink("<<<","Products",new { page=(Model.Products.PageIndex) }) %>
If a visitor ...
1
vote
1answer
316 views
tooltip for html.RouteLink
is it possible to write tooltip for html.RouteLink?
my link:
<%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)},null)%>
Thank and take care,
Ragims
1
vote
2answers
608 views
Asp.net MVC add textbox value to routelink
I am trying to learn asp.net MVC and having an issue to submit a textbox value to a model.
I have a text box in which users will type a number and when they hit the routelink the routelink will take ...
0
votes
0answers
90 views
MVC RouteLink Between Areas - Resource Not Found
In an MVC 3 project, I have two areas defined, Customer and Users. In the logical model, there are two types of Users, Corporate User, and regular user. Both share the same domain model 'Domani.User' ...
0
votes
2answers
294 views
RouteLink empty Href
Im using MVC3 with the Razor View Engine. I want to use a certain Route for a Href
the following is the Route registration, (the route seems to work as i can use the browser to directly use it)
...
0
votes
1answer
212 views
How to create link in asp.net mvc with html tags in title?
How can i create link using this - http://msdn.microsoft.com/en-us/library/dd505243.aspx
html.RouteLink using html tags in title?
In result i would see something like this :
<a class="" ...
0
votes
0answers
291 views
RouteLink / UrlHelper broken at MVC 3?
I just updated the references on my current web project from System.Web.MVC 2.0 to 3.0 and now some calls to "Routelink" are not working anymore.
Piece of code:
public static string ObjectLink(this ...
0
votes
2answers
286 views
Can an MVC2 or MVC3 html.routelink contain « and »?
What's the syntax for displaying this? My program will always render « literally in the pagination helper I am creating, and since the switch to MVC3 there seems to be no way to even hack it ...
0
votes
2answers
490 views
C# MVC: User Password Reset Controller: Issues with email addresses as usernames
I have written the code below for resetting users passwords (am using the aspnet membership api) in an C# MVC application, and tested successfully on a sample tutorial application (MVC Music Store). ...
0
votes
2answers
490 views
RouteLink in HtmlHelper?
How can I make up a RouteLink in a custom HtmlHelper? I know how to make it in a partial view but I want to build up a new link in a custom htmlhelper extension method with the use of a RouteLink. How ...
0
votes
1answer
640 views
Html.Action link and Html.RouteLink
Even If the url is same can i go to different action using Html.RouteLink and Action Link.Like when i click on news link i will go to news details.The url of this page is ...
0
votes
1answer
597 views
Actionresult doesnt get called by routelink. Formcollection the culprit?
I am fairly new to MVC. I am trying to set up a search page that searches a database and returns results. The search box is within a Html.BeginForm in my View, and looks like this:
<% using ...
0
votes
1answer
587 views
Generating a link containing a fragment with ASP.Net MVC Routelink
I'm trying to use Html.RouteLink within a view to generate a link to a named anchor on another page. There's a few definitions for RouteLink that include a fragment option but I'm trying to figure out ...