Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
4k 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? ...
9
votes
2answers
333 views

How to use CSS on an Html.ActionLink in C#

I tried this code <%: Html.ActionLink("Home", "Index", "Home", new { @class = "NavLink" })%> and it links to the css so that I can style the link, but it changes the link to have a different ...
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 ...
4
votes
5answers
179 views

How to use MVC 3 @Html.ActionLink inside c# code

I want to call the @Html.ActionLink method inside a c# function to return a string with a link on it. Something like this: string a = "Email is locked, click " + @Html.ActionLink("here to unlock.", ...
3
votes
2answers
102 views

How can I store a useful value in my ASP.NET MVC site's URL and make it propagate?

Let's say I have a simple ASP.NET MVC site with two views. The views use the following routes: /Foo and /Foo/Bar. Now let's say I want to use the URL to specify (just for the sake of example) the ...
2
votes
1answer
33 views

@Html.ActionLink not generating link

route : routes.MapRoute("Default", "{controller}/{action}/{id}/{args1}/{args2}/{args3}", // URL with parameters new { controller = "Home", ...
2
votes
1answer
230 views

ASP.NET MVC3 - Usage of Html.ActionLink

I need to use the Html.ActionLink in the format: property of the grid.Column specification. My code goes as below: grid.GetHtml( grid.Columns( grid.Column(header: "Column 1", format: (item) ...
2
votes
3answers
712 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
1answer
283 views

How to use ASP.Net — Html.ActionLink()

Okay, I'm pretty new to ASP.Net / MVC 2. Can anyone explain how to use the Html.ActionLink thing? I understand that the first parameter is the displayed text, but for the second one, what is the ...
1
vote
2answers
298 views

MVC3 Html.ActionLink Post

I have an MVC3 C#.NET web app and need to call a view using Html.ActionLink. I can't tell from the documentation if I can specify the POST or GET. Below is my HTML, is there a way to specify GET or ...
1
vote
2answers
143 views

MVC3 - Placing Role Athorization on @Html.Actionlink()

What is the best and/or most efficient way to place Authorization on an @Html.Actionlink so so those not authrorized DO NOT SEE THE LINK.
1
vote
0answers
411 views

How to display dynamic Html.ActionLink label?

This code works, but displays "Details" for every row of my table: @appsGrid.GetHtml( tableStyle: "table", headerStyle: "head", alternatingRowStyle: "alt", columns: ...
1
vote
1answer
271 views

ASP.NET MVC: 'does not contain a definition for' and 3 different errors depending on my changes (please read first sentece of the post)

my question is strictly connected with this one ASP.NET MVC View throwing CS1061 error related to type of model object passed as ViewDdata to a view , but my reputation is to small to add a comment ...
1
vote
2answers
212 views

How to add an image using css in asp mvc 2?

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 ...
1
vote
2answers
86 views

html.actionlink? to view list of users

creating a action link to count number of users
1
vote
2answers
1k views

How do I use an ActionLink with the RouteValueDictionary?

I'm trying to make my URL look like this: http://domain.com/controller/action/123/SomeTextForSEO I tried using an Action Link, but that appends ?company=SomeTextForSEO instead of the company name ...
1
vote
1answer
345 views

How to call the Route Name in Html.ActionLink asp.net MVC?

I have this route routes.MapRoute( "ViewGames", // Route name "psp/{controller}/{action}", // URL with parameters new { controller = "Games"} // Parameter ...
1
vote
1answer
348 views

Save text and link in asp.net mvc resource file - resource.aspx.resx

i have a sentence with html. action link: <b>Please enter your username and password. <%= Html.ActionLink("Register", "Register", null, new { @id = "logOnLinkRegister" })%> ...
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
1answer
203 views

Turining An HTML <td> into a link ASP.NET MVC

I'd like to be able to turn rows of an html table into links to controllers. I figured something like <td onclick="<%:Html.ActionLink("", "Index", new {id=item.user_id}) %>"> I'm using ...
1
vote
2answers
290 views

Possible to write an Extension Method for ASP.NET's Html.ActionLink() method?

Right now, I'm trying to work around an IE6/7 bug which requires the wrapping of the </a> closing tag with this IE specific comment to make some drop-down menu work: <!--[if IE ...
1
vote
3answers
942 views

Create a T4MVC ActionLink with hash/pound sign)

Is there a way to create a strongly typed T4MVC ActionLink with a hash in it? For example, here is the link I'd like to create: <a href="/Home/Index#food">Feed me</a> But there's no ...
1
vote
1answer
148 views

Html.Encode question

I'm working through the NerdDinner MVC tutorial and came across this and was wondering about. On page 62 of the pdf they have the following: <asp:Content ID="Main" ...
1
vote
2answers
71 views

How to generate just the URL of the Controller method in ASP.NET MVC

So Html.ActionLink("Report", "SendMail", "Misc", new { id = Model.ImageID }, null) will generate a nicely formatted link. <a href="http://localhost:3224/Misc/SendMail/5">Send Mail</a> ...
0
votes
4answers
48 views

When using MVC, how to call a Controller Action and Pass Text Box values?

How to read from a text box value when using Html.ActionLink so that the value can be passed to the action? I have the below code: <table> <tr> <th> ...
0
votes
1answer
38 views

MVC3: url with only controller and parameters (no action)

im trying to create an Html.ActionLink with segments www.example.com/Store*/Segment1/Segment2/Segment3*. The segments are optional. ive defined the following route: routes.MapRoute("Store", ...
0
votes
0answers
24 views

Generating dynamic strongly typed ActionLinks

I am creating a menu that displays items depending on user roles. Ideally I would prefer to use ActionLink extension from MVC Futures, so in a view it would look like this: @foreach (var item in ...
0
votes
0answers
71 views

c# System.Web.Mvc.UrlHelper.GenerateUrl method have a bug?

My English not wel, please bear with me a lot. routes in Global.asax file: routes.MapRoute("Default","{controller}/{action}/{Page}/{id}",new { controller = "Home", action = "Index", Page = 0, id = ...
0
votes
1answer
110 views

Html.ActionLink equivalent of a specific URL format

I want to use Html.ActionLink to return an anchor tag with href like /Product/22/Product-Name, where Product is my controller name and 22 is my id and Product-Name is my title. In my global.asax, I ...
0
votes
2answers
46 views

Html.ActionLink port setting

How do you set up a diffrent port in public static MvcHtmlString ActionLink( this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, ...
0
votes
3answers
71 views

How to render partial again and again(only with RenderAction)

How to render partial(with Html.RenderPartial()) again and again. Or How to use html.Action("","") to render a partial (by calling an action which is returning partial view ) again and again.
0
votes
1answer
55 views

Can we use Html.ActionLink() for url's outside the application

I need to have links which will point to other website web pages. Currently I am using the following method. <a href="@reseller.Url">Product-Page</a> I was wondering if i can use ...
0
votes
2answers
67 views

Passing parameter to controller action from a Html.ActionLink

Is there anything wrong with this html? I want to have a link in the masterpage to navigate to "CreateParts" view. I have action 'CreateParts' which have a parameter parentPartId in the controller ...
0
votes
3answers
163 views

Simple Html.Actionlink question (MVC3)

The Route: routes.MapRoute( "Items", // Route name "{controller}/{action}/{id}", // URL with parameters new {controller = "Item", action = "Index", id ...
0
votes
1answer
205 views

If Action link is disabled, how to make it not accessible through url in MVC3

In my view I disable or enable links as below. Even if the link "Insured or Owner Name Change" is disabled in the view I am able to access it through the url like ...
0
votes
1answer
353 views

MVC3 : How to call A view from another controller from a different controller

I have to make a form consisting of several sub forms which may or may not contain grids. For simplicity lets say i am using 2 models 1. Applicant Detail : where the applicants basic information ...
0
votes
1answer
378 views

MVC 3 - Actionlink - Show/Hide Register if logged in/logged out

How do I: 1. Move the register link "@Html.ActionLink("Register", "Register")" to the home page and 2. Show and Hide it based on if a user is logged in or logged out I saw this tutorial awhile back ...
0
votes
2answers
142 views

How to calculate date difference in mvc and hide/show Html.Actionlink according to the difference

I have got the date field in my db , What I want to do is find the date difference betwwen current date and the date of the product created(which is in db) . For instance if the product date is ...
0
votes
1answer
75 views

What is Proper MVC 2 Page Navigation Protocol in this instance

I am making progress in my assignment, but have run into a minor sticking point. While I research it, I thought I would ask the question on this forum so if any one else runs into a similar issue, ...
0
votes
1answer
87 views

Why is @Html.ActionLink leaving off the controller and action portions of the link?

I am creating a link inside the main _Layout.cshtml file inside a MVC3 application. @Html.ActionLink("Security", "Index", "Home", new { area = "Security" }, new { }) When the page is rendered, this ...
0
votes
1answer
72 views

append '#div-id' to reference a html element by id using htmlhelper

How do i append to an url like this mysite.com/articles/1/my-first-article the element with the div id #commentList mysite.com/articles/1/my-first-article#commentList <%: ...
0
votes
1answer
137 views

Adding an html action link to an Entity Framework Code First AddModelError string

I am pretty new to programming so sorry if I'm being stupid, but I am writing an ASP.Net MVC3 application in which, if a particular exception is caught a message is displayed because of a composite ...
0
votes
1answer
936 views

mvc 3 Ajax.ActionLink with image not working

I am using vs2010 win7 x64 MVC 3 with regular asp.net development server. And the newest versions of firefox, IE9 and chrome. I have a strongly typed view and i'm trying to get a ajax extention ...
0
votes
1answer
296 views

MVC3 actionlink

in MVC3 I have an area called test with a default route context.MapRoute( "test_default", "test/{controller}/{action}/{id}", new {controller="Store", ...
0
votes
1answer
266 views

MVC3 ActionLink nightmare

I have a dashboard page which has 4 partial views. each view has an edit link which when clicked, loads another temaplate. Now ofcourse the new template will have Save and Cancel. When I click on ...
0
votes
1answer
143 views

Html.ActionLink URL error

return RedirecttoAction("Success") how to generate redirection?
0
votes
1answer
141 views

Value from ViewData to display as link and value in action link

I have a list of document names and id's in my View Data ViewData["Documents"] = new SelectList(repo.GetDocumentForMeeting(id), "DocId", "FileName"); I need to display as many action links as ...
0
votes
1answer
318 views

MVC 3 - Entity Framework & POCO - Many to Many REMOVAL on ActionLink()

I have Many to Many Relationships for: Company -----> CompanyVenue <------ Venue I can currently add a Venues to a Companies and Companies to Venues. The Add Venue link takes the user to ...
0
votes
1answer
462 views

Create Dynamic Html.ActionLink

I would like to generate a dynamic Html.Action link after a button click from a View. Currently I am using ajax to update a tag on the form with a randomly generated product name from a DB. My code ...
0
votes
1answer
220 views

ASP.NET MVC generate a URL with the controller/action values?

I have a generic class and I want to generate a URL when given the controller and action values. The most obvious method is Html.Action(controller, action), but this can only be called within a View. ...

1 2