The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
13 views

Image as link to action method

I have a question about using an image as link to a specific action in a controller. I load my images from the database and show them in a view: @foreach(var imgID in Model.DeliverablesIDsList) { ...
0
votes
2answers
15 views

ASP.NET MVC4 ActionLink Routes querystring issue

I have a action like public class EmployerController : Controller { public ActionResult Message(string contractorId, int projectId) {....} and a @html.ActionLink as ...
0
votes
2answers
33 views

mvc html.actionlink css class

Cant seem to get a class to over write the inherited styles for a:link @Html.ActionLink("Back to List", "Index", null, new { @class = "htmlactionlink" }) CSS a:link, a:visited, a:active, a:hover ...
0
votes
1answer
56 views

Display Image on mouse-on hover

I am having this application where I need to have something like, when we bring the mouse over an employee's name, which is an actionlink , it is suppose to show the employee's image. I am trying to ...
0
votes
2answers
58 views

ActionLink doesn't generate proper routing url for actions which has two parameters

In the view @Html.ActionLink("Edit", "Edit", new { id = 1, year = 1 }) In the controller // GET: /Forecasts/Edit/5 public ActionResult Edit(int id, short year) { ... } It generated a url ...
1
vote
1answer
43 views

ASP.NET MVC ActionLink renders erroneously

SO community I have the following issue: If i render an ActionLink like this: @Html.ActionLink(titleText, Title.Href.TargetAction, Title.Href.TargetController, ...
0
votes
0answers
76 views

MVC4 ActionLink() generating wrong url

I deployed an MVC4 application into a WebForms (.NET 4.0) website. Everything seems to be working great except for each Html.ActionLink(...) is generating an incorrect href="#####" link attribute. ...
0
votes
2answers
37 views

Why doesnt my @html.actionlink go to the correct link?

Im having a problem with going to the correct link. When im trying to go to index view in template folder it goes to index view in admin folder instead and i cant understand why when the code says it ...
3
votes
1answer
146 views

IIS 7.5 ActionLink Resource not found in MVC4

In my MVC application,@Html.ActionLink control works fine in my local machine. The actionlink redirects to the specified action. But when hosted in server, error "Resource not found. Please check the ...
0
votes
1answer
104 views

@Html.ActionLink helper pointing to current page

Setup: I am using the Html.ActionLink helper to create a tags to my action, Reset, in the controller PasswordReset, in the area Admin. Html.ActionLink calls (EDITED, but still no joy): The calls to ...
0
votes
1answer
400 views

Html.ActionLink inline if statement

This is what I have right now which works fine: @Html.ActionLink("Home", "Index", "Home", null, (ViewBag.SelectedPage == CurrentPageEnums.SelectedViewEnum.Home) ? new { @class = "current"} : null) ...
0
votes
1answer
159 views

MVC WebGrid Conditional Concate Htlm.ActionLink

I'm trying to concatenate 2 Html.ActionLink in a conditionnal column in a WebGrid. somethings like that : @grid.GetHtml(columns:grid.Columns( grid.Column("AccountNumber"), ...
1
vote
1answer
208 views

call dropdownlist selected value as @html.action route value

How to call dropdownlist selected value as @html.action route value. I am using following code in my MVC3 razor. I have to dynamically call 'eventid' as dropdownlist selected value. ...
1
vote
1answer
157 views

How add #id to Html.ActionLink

How generate link like <a href="/home/index#item">text</a> with: return RedirectToAction() @Html.ActionLink() I need add #item for tab open on page load. Thanx.
0
votes
2answers
251 views

HTML.ActionLink to Controller using Ajax to prevent postback

Here is the ASP MVC code in my view. It fires off to the controller and passes assetId and relationshipContext: @Html.ActionLink("Archive", "Archive", new { assetId = Model.ID, relationshipContext = ...
0
votes
1answer
291 views

pass object through @Html.ActionLink with click

What I'm trying to do is pass the item that was clicked to the controller for editing but the only thing I can pass to the controller is a string. view: foreach (MenuItemViewModel menuitem in ...
0
votes
1answer
109 views

Why is MVC actionlink not rendering correctly?

I am passing this : <%: Html.ActionLink("Edit", "EditCRMRequest", "CRM", new { Id = item.Id })%> and I am getting in browser : http://something.com/CRM/EditCRMRequest?Length=3 with Error ...
0
votes
1answer
153 views

How to clear all anchor styling from @Html.ActionLink

In my MVC application, I have used @Html.ActionLink. I have set their styles to display them like a button, but the problem is that there are stome styles for a, a:link, etc (I mean, all anchor ...
0
votes
3answers
174 views

Whats the use of htmlattributes of html.action method

I am new to MVC and using MVC 2.0 in asp.net. This is the content of stylesheet1.css: .h1{color:Red;} This is the content of display.aspx: < head runat="server"> <## Heading ##link ...
1
vote
2answers
282 views

ActionLink image hover button effect with mouse event

I want to create button effect i.e. mouse_over, mouse_leave and mouse_click using the jQuery. I have link written in ActionLink in mvc 4 using visual studio 2012. so i want to change image with ...
1
vote
2answers
252 views

ASP .Net MVC site.master HTML.ActionLink new menu item set

Just started MVC 2.0. There are built in views. In home there are two view. Index.aspx and about.aspx. I am creating a new folder in Views named customer and create a new page "Customer.aspx" with ...
0
votes
2answers
64 views

Sending data with ActionLink GET call

How should i do this without using the RouteData.Values["id"]; I am using this action call from the view @Html.ActionLink("Post","Create","Post", new {id=item.Id }, null) And this is the Action ...
1
vote
1answer
112 views

Passing class object with List from the View to the Controller

I have class which contains List: public class Client { public string FirstName { get; set; } public string LastName { get; set; } public List<Address> Addresses { ...
0
votes
2answers
543 views

Passing a GET parameter to ActionLink in ASP.NET

Sorry but I am new to C# and ASP.NET and I saw alot of posts about this problem but I quite didn't get it. I am trying to understand how to pass a GET parameter to an action thru HTML.ActionLink: ...
1
vote
2answers
515 views

Html.ActionLink Textbox Value

I need to put this value: @Html.DropDownList("region", new[]{ new SelectListItem() { Text = "MA", Value = "MA" }, new SelectListItem() { Text = "BC", Value = "BC" }, ...
0
votes
2answers
921 views

Pass the model value as parameter in html.actionlink Jquery method

I am generating dynamic links using below code in mvc razor views. @foreach (App.Models.Users item in Model ) { @Html.ActionLink("Delete", "DeleteEmp", new { id = item.Id }, new { onclick = ...
0
votes
2answers
245 views

HTML.ActionLink redirect not stopping with return false in $.ajax()

i've a HTML.ActionLink on view. what i'm doing is i'm making call to $.ajax() function which checks for return true or false from an anction. it hitting the action, returning the desired result ...
0
votes
3answers
118 views

How to check some criteria before redirection to page using @Html.Actionlink

i have used @Html.ActionLink for moving to one form. I want to check some condition before moving to that page. condition like If user have access rights for that (Edit) page then only he can redirect ...
0
votes
1answer
368 views

Using “data-toggle” with Html.ActionLink

I want to use "data-toggle" wiht actionLink. Like this; Html.ActionLink("Delete", "Users", "Admin", new { item.UserId , strRole = strRole }, new { id = "cmdDelete", href="#myAlert", ...
2
votes
2answers
5k views

MVC 4 Ajax.Action link won t work

I am trying to make a MVC website with Ajax call. I have no problem using directly jquery, but when i use @Ajax.ActionLink, i don't get the result i want. Here is my view: <script ...
0
votes
2answers
209 views

How to get URL value in C# MVC and put it in an Html.ActionLink

So I have this page which will show an individual record from a database. So my URL will look like: mysite.com/Vehicle/Edit/1 or it may end it 2,3,4,5 etc.. depending on the record its on. ...
2
votes
3answers
2k views

System.Web.Mvc.HtmlHelper' does not contain a definition for 'ActionLink'

I would like to use custom @Html.ActionLik i am trying to use following code:- public static class LinkExtensions { public static MvcHtmlString MyActionLink( this HtmlHelper htmlHelper, ...
0
votes
0answers
120 views

In tapestry 5.3.2 I have an actionlink.Onclick of which i am submitting form; form is getting submitted after the call of event handler

In page.tml DELETE In page.java private void onActionFromDelete(){ //some logic using submitted form values } The problem is sometimes this event handler is getting called before form is being ...
0
votes
1answer
88 views

Partial view links not working in Fire Fox

I have a MVC4 asp.net application, I have two layouts a main layout for the main page and a second layout for the nested pages. The problem I have is with the second layout, on this layout I call a ...
0
votes
3answers
1k views

Add ActionLink in JqGrid column in ASP.NET MVC 3 Razor

I am using jqGrid with ASP.NET MVC 3 and Razor. I am looking to add 2 columns to the jqGrid along with the rest of the columns. The columns I want to add are Edit Delete These columns value I ...
0
votes
1answer
1k views

Html.ActionLink() image background mvc

How to set an image background for a Html.ActionLink()? My code: @Html.ActionLink("Home", "Index", "Home", new {@data_transition = "slide"})
0
votes
2answers
74 views

How do I create an ActionLink to the Index action of a different controller?

How do I change the following code to produce the proper URL? Note: The ActionLink is being produced from a different controller than DomainsController. @Html.ActionLink("Domains", "Index", ...
0
votes
1answer
665 views

Calling PostMethod from HTML.Actionlink

Hi I am fairly new to MVC and facing a issue. I have a View which lists all the countries having just 2 columns I want column headers clickable and should sort on clicking on it I have shown my ...
0
votes
2answers
218 views

Html.ActionLink Title parameter as test + value

I have this line but not sure about the + string part. It is not correct as it is now: <p> <%: Html.ActionLink("TUK-JS-KPI-WE-" + ...
1
vote
1answer
60 views

Localized string message inside js

I have mvc actionLink like this @Html.ActionLink("Delete", "Delete", new { id = item.Id }, new { onclick = "return confirm('Are you sure you wish to delete this article?');" }) Now, I want ...
0
votes
2answers
83 views

Applying a class to some link text

We've recently added an extension method (string.Highlight(string target)) to wrap occurences of the target text with <span class="highlighted"></span>, and are using it for all text ...
2
votes
2answers
2k views

Using Knockout bindings in MVC ActionLink

I am attempting to utilise KnockoutJS and MVC 4 in order to display a table with ActionLink definitions in the first column of the table. Displaying the data itself is extremely straight-forward and ...
1
vote
4answers
503 views

Display an HTML Code like &reg or &copy in an Html.ActionLink Text

unfortunately, I was not successful with my research for this topic. With an anchor tag, I was able to do this: <a href="..."> My Link &reg </a> Now I want the same with an ...
0
votes
2answers
383 views

Add text to Action Link

Simple question: Using ActionLink, how to create hyperlinks like these? <a href="/Test" class="dropdown-toggle" data-toggle="dropdown"> Test <b ...
0
votes
1answer
474 views

ASP.NET Mvc Jquery ui does not work?

CustomerController.cs public ActionResult AddCustomer() { return ContextDependentView(new _Customers()); } public ActionResult EditCustomer(int sno) { return ...
0
votes
1answer
787 views

Redirect view with Html.ActionLink

I have the following problem: I make the call to the method of a controller, it receives a parameter. The code is as follows: @Html.ActionLink("Preview", "ReportExecution", "Report", new { reportName ...
0
votes
1answer
174 views

how to obsolete controller name from Html.ActionLink in mvc3

i want to obsolete controller name from Html.ActionLink because i defined my controller in route how to do this , because if i leave controller name blank in Html.ActionLink mvc3 automatically put ...
0
votes
1answer
332 views

MVC3 Layout Page Action Link Parameter

On my home page I need a link to point to user account so I wanted link to redirect to Edit page like so in the Layout page. @Html.ActionLink("Edit", "Edit", new { id=item.ReviewID }) It doesn't ...
2
votes
1answer
272 views

How do I generate an action link from a model class? [duplicate]

Possible Duplicate: HTML.ActionLink method In my ASP.NET MVC 3 application, I wish to generate an action link from within a model class, corresponding to calling Html.ActionLink in a view. ...
2
votes
1answer
2k views

How to use/pass hidden field value in ActionLink

I have problem passing hidden field value in actionlink parameter: productView: @Html.ActionLink("ProductCompare", "ProductCompare", new { ProductIds= ...

1 2 3