Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

52
votes
6answers
71k views

HTML.ActionLink method

Let's say I have a class public class ItemController:Controller { public ActionResult Login(int id) { return View("Hi", id); } } On a page that is not located at ...
39
votes
9answers
21k views

ASP.NET MVC Ajax.ActionLink with Image

is there anyway to have an image act as an ajax actionlink? I can only get it to work using text. Thanks for your help!
36
votes
10answers
34k views

Html.ActionLink as a button or an image, not a link

In the latest (RC1) release of ASP.NET MVC, how do I get Html.ActionLink to render as a button or an image instead of a link?
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() ...
18
votes
12answers
12k views

ASP.NET MVC ActionLink and post method

Can anyone tell me how can I submit values to Controller using ActionLink and POST method? I don't want to use buttons. I guess it has something with jquery. Thank you!
13
votes
2answers
7k views

ASP.NET MVC - Pass array object as a route value within Html.ActionLink(…)

I have a method that returns an array (string[]) and I'm trying to pass this array of strings into an Action Link so that it will create a query string similar to: ...
12
votes
5answers
6k views

asp.net mvc Html.ActionLink() keeping route value I don't want

I have the following ActionLink in my view <%= Html.ActionLink("LinkText", "Action", "Controller"); %> and it creates the following URL http://mywebsite.com/Controller/Action Say I add an ID ...
10
votes
2answers
3k views

ActionLink htmlAttributes

WORKS <a href="@Url.Action("edit", "markets", new { id = 1 })" data-rel="dialog" data-transition="pop" data-icon="gear" class="ui-btn-right">Edit</a> DOES NOT WORK - WHY? ...
10
votes
3answers
5k views

ASP.NET MVC: Putting HTML inside Html.ActionLink(), plus No Link Text?

I have two questions: I'm wondering how I can display no link text when using Html.ActionLink() in an MVC view (actually, this is Site.Master). There is not an overloaded version that does not ...
10
votes
2answers
2k views

Does ASP.NET MVC RC has a strongly typed RedirectToAction method already?

Since I have decided to let RC go while staying with Beta for now, I have no way of knowing whether there has been some progress in this area. Who has tried it, are there strongly typed ...
9
votes
1answer
3k views

Using Html.ActionLink and Url.Action(…) from inside Controller

I want to write an HtmlHelper to render an ActionLink with pre-set values, eg. <%=Html.PageLink("Page 1", "page-slug");%> where PageLink is a function that calls ActionLink with a known ...
8
votes
3answers
4k views

ASP.NET MVC 3 (Razor) Ajax.ActionLink - What am i doing wrong?

Trying to have a AJAX action link which when clicked, should do a HttpGet to an action method which returns a PartialViewResult and shoves the HTML into a div. Here's my View: <div ...
8
votes
1answer
6k views

How to dynamically alter the class of an Html.ActionLink in MVC

I'm looking for a way to alter the class of an ActionLink in the controller based on specific criteria (not found in the model so I can't write a conditional in the view itself). But i can't seem to ...
7
votes
2answers
3k views

ASP.NET MVC Delete ActionLink with confirm

I'm trying to implement a simple ActionLink that will delete records using ASP.NET MVC. This is what I have so far: <%= Html.ActionLink("Delete", "Delete", new { id = item.storyId, onclick = ...
6
votes
1answer
6k views

ASP.NET MVC Html.ActionLink result URL - the way of encoding

I create an amount of actions in MVC controllers. public ActionResult DoSmth1(string token) public ActionResult DoAnother2(string token) And when I have to call ActionLink.. ...
6
votes
1answer
2k views

Create an ActionLink with HTML elements in the link text

In an ASP.NET MVC view I'd like to include a link of the form: <a href="blah">Link text <span>with further descriptive text</span></a> Trying to include the element in the ...
5
votes
4answers
1k views

MVC Ajax.ActionLink doesn't find POST method

I have a POST method declared in my controller: [AcceptVerbs(HttpVerbs.Post)] public ActionResult UpdateComments(int id, string comments) { // ... } and an ActionLink in my view: <%= ...
5
votes
1answer
988 views

How is OnSuccess measured for a ASP.NET MVC ActionLink?

I don't exactly understand how ASP.NETs ActionLinks work. I see that they have a event handler for OnSuccess and OnFailure, but I can't find anything that describes how success and failure is ...
5
votes
4answers
4k views

How can I pass a Textboxes value to my Ajax.ActionLink?

In my ASP.NET MVC application I want a user to add a value into a textbox and then press my Ajax.ActionLink. I want to do something like this: Ajax.ActionLink("Go", "Action", "Controller", new { ...
4
votes
4answers
547 views

How do you override route table default values using Html.ActionLink?

Global.asax route values routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = ...
4
votes
3answers
616 views

RavenDB Ids and ASP.NET MVC3 Routes

Just building a quick, simple site with MVC 3 RC2 and RavenDB to test some things out. I've been able to make a bunch of projects, but I'm curious as to how Html.ActionLink() handles a raven DB ID. ...
4
votes
3answers
287 views

How do you set the title attribute of an ASP.NET MVC Html.ActionLink to the generated URL

I would like users to be able to see the corresponding URL for an anchor tag generated by Html.ActionLink() when they hover over the link. This is done by setting the title attribute but where I'm ...
4
votes
4answers
1k views

MVC ActionLink add all (optional) paramters from current url

the very famous actionlink: <%: Html.ActionLink("Back to List", "Index")%> Now, this link is in my Details view. The Index view is a search page. The url of that looks like this: ...
4
votes
1answer
5k views

Conditionally add htmlAttributes to ASP.NET MVC Html.ActionLink

I'm wondering if it's possible to conditionally add a parameter in a call to a method. For example, I am rendering a bunch of links (six total) for navigation in my Site.Master: <%= ...
4
votes
1answer
593 views

ASP.NET MVC ActionLink vs. URL Rewrite

here is the issue : There is a ASP.NET MVC 2 web app, lets call it myapp.com. I want dynamic subdomains (user created categories) like something.myapp.com. So i have set up URL rewrite with rule ...
4
votes
3answers
507 views

Adding rel and title to ASP.NET MVC Action Links

I decided primarily for SEO reasons to add the "rel" to my action link, but am not sure that the way I have gone about this is going to follow "best practices." I simply created a new Extension ...
4
votes
3answers
4k views

Html.ActionLink in asp.net MVC object value in wrong format

I have a html.actionlink that i wish to display a link to a members profile page like this: http://somesite.com/members/{username} When use the following markup <%= Html.ActionLink(r.MemberName, ...
3
votes
3answers
3k views

How do I insert an image using HTML.ActionLink?

how to insert image in html.actionlink - asp.net mvc? i did it so, but it doesnt works. <a href="<%= Html.ActionLink("search", "Search", new { searchText = "txtSearch" }, null); %>"> ...
3
votes
2answers
329 views

ASP.NET MVC and Ajax slow?

I've just started out trying MVC 2 and Ajax, and I'm wondering if I'm doing something wrong, because I was under the impression that Ajax would make changes in a webpage very fast. The example I have ...
3
votes
2answers
282 views

Configuring ASP.NET MVC ActionLink format with GoDaddy shared hosting

Background I have a GoDaddy shared Windows hosting plan and I'm running into a small issue with multiple domains. Many people have previously reported such an issue, but I am not interested in ...
3
votes
1answer
568 views

MVC actionlink posting List of complex type

I have an actionlink that on click im passing a List of objects to a controller action. Example: View: Html.ActionLink("TestLink", "TestMethod", "Test", Model.SampleList, null) ...
3
votes
3answers
295 views

How do you link to an action that takes an array as a parameter (RedirectToAction and/or ActionLink)?

I have an action defined like so: public ActionResult Foo(int[] bar) { ... } Url's like this will work as expected: .../Controller/Foo?bar=1&bar=3&bar=5 I have another action that does ...
3
votes
3answers
2k views

How Can I Stop ASP.Net MVC Html.ActionLink From Using Existing Route Values?

The website I'm working on has some fairly complicated routing structures and we're experiencing some difficulties working with the routing engine to build URLs the way we need them to be built. We ...
3
votes
3answers
5k views

$(document).ready in ascx page after ajax callback

I'm having a little problem with this setup here I have a list of .ascx files and they all do different tasks in terms of calculations to the controller itself. So on my .aspx page I click on an ...
3
votes
2answers
3k views

MVC ActionLink generating different types of links… why?

I'm new to MVC land, and have an app that i'm working on. i have 2 different links with 2 routes in my global which are fairly similiar route 1 routes.MapRoute("Category", ...
2
votes
2answers
38 views

ASP.NET MVC 3 - Ajax.ActionLink() Routing

This ActionLink works fine when it is outside of an area, but as soon as I moved it into one it started appending the name of the controller to the url:TrainingandDevelopment/MakeCall It should just ...
2
votes
2answers
24 views

MVC ActionLink how to specify text, actionname, controller and htmlattributes

I have been trying to do an actionlink like: <li>@Html.ActionLink("Home", "Index", "Invoice", new { id = "homelink" })</li> So what I have is linkText, an actionname, a controller name ...
2
votes
1answer
785 views

Passing parameters to MVC Ajax.ActionLink

How can I send the value of the TextBox as a parameter of the ActionLink? I need to use the Html.TextBoxFor <%= Html.TextBoxFor(m => m.SomeField)%> <%= Ajax.ActionLink("Link Text", ...
2
votes
1answer
523 views

Raw ActionLink linkText

I want to put a button as the text of an @ActionLink() but I can't because it HTML-escapes my string... I found the @Html.Raw() mechanism and have tried the @ActionLink().ToHtmlString() but can't ...
2
votes
1answer
2k views

Problem with Ajax.ActionLink AjaxOptions Callbacks (ASP.NET MVC 3)

I have an Ajax.ActionLink inside a PartialView like so: @Ajax.ActionLink(Model.IsVisible ? "Disable" : "Enable", "ToggleVisibility", "Review", new { area = "Admin", id = Model.Id }, new AjaxOptions { ...
2
votes
1answer
516 views

ASP.NET MVC add css class to actionlink

How do I add a css class to this actionlink? I have read you do it something like new { class = button } but not sure where to put it within my actionlink... <%= Html.ActionLink("View ...
2
votes
3answers
629 views

Using HTML tags inside linkText of Html.ActionLink

Is it possible to use HTML tags in the linkText of Html.ActionLink? For instance, if I wanted to bold part of the text of a link I would try something similar to this: <%= Html.ActionLink("Some ...
2
votes
3answers
891 views

how to make html.actionlink without text but with image inside

it is simple html: <%-- <a href="?language=de"> <img src="/Images/Company/de.png" alt="Webseite auf Deutsch" style="border: 0;" /> </a> --%> i would like to make from ...
2
votes
3answers
2k views

Html.ActionLink with a specified HTML id?

I'd like to give the like generated with an Html.ActionLink an HTML id so I can change the CSS depending on where I am. I have a MasterPage with a set of links and I'd like to distinguish the active ...
2
votes
1answer
419 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
1answer
243 views

ASP.NET MVC - creating and handling with URLs with Greater Than and Less Than characters

Consider a link to a page for a user's profile. A page is creating that URL like this: //Model.Name has value "<bad guy>" Html.ActionLink("foo, "ViewUser", new { id=5, ...
2
votes
4answers
2k views

Pass Dictionary of routeValues to ActionLink

All, Getting to grips with ASP.NET MVC. So far, so good, but this one is a little nuts. I have a view model that contains a dictionary of attributes for a hyperlink, used like this: menu = model ...
2
votes
3answers
544 views

Should Html.Encode be called when building ActionLinks in ASP.NET MVC

If the name of a link is pulled from the database, should you be calling the Html.Encode method to clean the name? For example: Html.ActionLink(Model.PersonFromDB.FirstName, ...
2
votes
4answers
1k views

ASP.NET MVC ActionLink: Strange URL generated

Why does the following Html.ActionLink call: Html.ActionLink("Approve", "Advance", new { id = Model.ID, step = StepType.Approve }) generate a URL with query parameters rather than a "restful" URL, ...
2
votes
3answers
650 views

URL-encode parameters in ActionLink?

I have the following route registered; routes.MapRoute( "LocationsByArea", "Locations/{system}/{storage}/{area}", ...

1 2 3 4