Tagged Questions
The html-helper tag has no wiki summary.
75
votes
5answers
19k views
Razor HtmlHelper Extensions Not Found
Dunno if this was happening in the PR or Beta, but if I create an extension method on HtmlHelper, it is not recognized in a Razor powered page:
namespace SomeNamespace.Extensions {
public static ...
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 ...
27
votes
1answer
4k views
Generate URL in HTML helper
Normally in an ASP.NET view one could use the following function to obtain a URL (not an <a>):
Url.Action("Action", "Controller");
However, I cannot find how to do it from a custom HTML ...
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() ...
25
votes
3answers
48k views
ASP.NET MVC 2 - Html.DropDownListFor confusion with ViewModel
I'm getting totally lost and confused on how to use the new strongly typed Html.DropDownListFor helper on ASP.NET MVC 2.0 R2
In the View I'm writting:
<%= Html.DropDownListFor(m => ...
23
votes
4answers
11k views
How to set a default value with Html.TextBoxFor?
Simple question, if you use the Html Helper from ASP.NET MVC Framework 1 it is easy to set a default value on a textbox because there is an overload Html.TextBox(string name, object value). When I ...
21
votes
4answers
9k views
Razor: Declarative HTML helpers
I'm trying to write a simple declarative html helper:
@helper Echo(string input) {
@input
}
The helper works fine if I embed it into the page I want to use it on. But if I move it to a separate ...
16
votes
3answers
3k views
What's the point of Html.DisplayTextFor()?
Is there a good reason to use the strongly typed html helper...
<%: Html.DisplayTextFor(model => model.Email) %>
As opposed to...
<%: Model.Email %>
16
votes
2answers
13k views
ASP.NET MVC: Hidden field value does not get rendered using HtmlHelper.Hidden
Something pretty weird is happening with my app:
I have the following property in my ViewModel:
public int? StakeholderId { get; set; }
It gets rendered in a partial view as follows:
<%= ...
15
votes
1answer
7k views
Asp.Net MVC 2 Html.TextBoxFor Best way to specify a format string for a DateTime property of model
As the question title explains, what is the best way to specify a format which my Views use when displaying values of a DateTime property via the Html.TextboxFor method.
The default display includes ...
15
votes
5answers
4k views
Using ViewModel Pattern with MVC 2 Strongly Typed HTML Helpers
I am working with ASP.NET MVC2 RC and can't figure out how to get the HTML helper, TextBoxfor to work with a ViewModel pattern. When used on an edit page the data is not saved when UpdateModel() is ...
14
votes
4answers
30k views
Html.TextBox conditional attribute with ASP.NET MVC Preview 5
I have a strongly-typed MVC View Control which is responsible for the UI where users can create and edit Client items. I'd like them to be able to define the ClientId on creation, but not edit, and ...
13
votes
1answer
2k views
Get DisplayName Attribute without using LabelFor Helper in asp.net MVC
What is the best way to retrieve the display name attribute for an item in your model? I see a lot of people using the LabelFor helper for everything, but a label isn't appropriate if I just want to ...
13
votes
2answers
7k views
What does Html.HiddenFor do?
Although I have read the documentation on Html.HiddenFor, I've not grasped what is it used for...
Could somebody explain its uses and give a short example?
Where should those helpers go in the code? ...
13
votes
3answers
2k views
Custom html helpers: Create helper with “using” statement support
I'm writing my first asp.net mvc application and I have a question about custom Html helpers:
For making a form, you can use:
<% using (Html.BeginForm()) {%>
*stuff here*
<% } %>
I ...
12
votes
2answers
5k views
ASP.NET MVC 3 - Ajax.BeginForm vs jQuery Form Plugin
I'm starting a new ASP.NET MVC 3 project and am going to implement some screens that are read only by default but allow the user to edit information by clicking on an Edit button. I want these screens ...
12
votes
2answers
6k views
How can I add a class attribute via Html.BeginForm?
I know I can specify form attributes this way:
Html.BeginForm("DoSearch", "Search", FormMethod.Post, new { id = "MyForm"})
But what about class attributes? Obviously this does not work:
...
12
votes
3answers
3k views
Testing HtmlHelpers in ASP.NET MVC
Is there any way to (unit) test my own HtmlHelpers? In case when I'd like to have custom control (rendered by HtmlHelper) and I know requierements for that control how could I write tests first - and ...
12
votes
3answers
7k views
ASP.NET MVC Beta 1 - where is Html.RenderPartial?
I'm just in the process of upgrading my Preview 5 application to Beta 1, and I'm nearly there save for this one error when trying to render a control:
'System.Web.Mvc.HtmlHelper' does not
...
11
votes
3answers
3k views
How to concatenate several MvcHtmlString instances
I have some doubts about how to concatenate MvcHtmlString instances because of this information found in MSDN :
MvcHtmlString Class Represents an HTML-encoded string that
should not be encoded ...
11
votes
3answers
4k views
ASP.NET MVC2 Radio Button generates duplicate HTML id-s
It seems that the default ASP.NET MVC2 Html helper generates duplicate HTML IDs when using code like this (EditorTemplates/UserType.ascx):
<%@ Control Language="C#" ...
11
votes
8answers
5k views
Styling HTML helpers ASP.NET MVC
If I have an HTML helper like so:
Name:<br />
<%=Html.TextBox("txtName",20) %><br />
How do I apply a CSS class to it? Do I have to wrap it in a span? Or do I need to somehow ...
10
votes
3answers
2k views
Is it possible to create a custom ASP.NET MVC strongly typed HTML Helper?
I was wondering if it is possible to create a custom strongly typed HTML Helper in ASP.NET MVC 2? Creating a regular (read not-strongly-typed) helper is straightforward but i am having difficulty ...
9
votes
2answers
9k views
ASP.NET MVC 3 Custom HTML Helpers- Best Practices/Uses
New to MVC and have been running through the tutorials on the asp.net website.
They include an example of a custom html helper to truncate long text displayed in a table.
Just wondering what other ...
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 ...
9
votes
2answers
930 views
How to Unit Test HtmlHelper with Moq?
Could somebody show me how you would go about creating a mock HTML Helper with Moq?
This article has a link to an article claiming to describe this, but following the link only returns an ASP.NET ...
9
votes
5answers
1k views
Are ASP.NET MVC HTML Helpers overrated?
It is quite possible that I may not have got the point, but I really can't figure out how ASP.NET MVC's HTML Helpers can help me. Here's a sample: -
HTML:
<a href="ActionName" ...
8
votes
2answers
5k views
DateTime field and Html.TextBoxFor() helper. How to use it correctly?
I have a DateTime field in my Model. If I try to use this field in a strong typed partial view this way
<%= Html.TextBoxFor(model => model.DataUdienza.ToString("dd/MM/yyyy"), new { style = ...
8
votes
2answers
1k views
Difference between Html.RenderAction and Html.Action
Does anybody know what's the difference between Html.RenderAction and Html.Action?
8
votes
6answers
5k views
How do I apply a CSS class to html.ActionLink in ASP.NET MVC?
I'm building an ASP.NET MVC application, using VB.NET and I'm trying to apply a css class to a Html.ActionLink using the code:
<%=Html.ActionLink("Home", "Index", "Home", new {@class = "tab" ...
8
votes
4answers
2k views
Do you use any custom ASP.NET MVC HtmlHelper extensions?
I'm interested in seeing what custom extensions other developers have created for the ASP.NET MVC HtmlHelper class.
I think Microsoft got off to a great a start, but as usual, left a lot of open ...
8
votes
7answers
9k views
Html.RenderPartial call from masterpage
Here is a scenario: Let's say I have site with two controllers responsible for displaying different type of content - Pages and Articles. I need to embed Partial View into my masterpage that will list ...
7
votes
3answers
266 views
Why not use Html.EditorForModel()
Ok I just discovered about the EditorForModel in MVC and I want to know when I should use this instead of an EditorFor on each of my property? And why does when I add a strongly typed view it does not ...
7
votes
2answers
9k views
Foreach on IEnumerable property and CheckBoxFor in ASP.Net MVC
I believe this question applies to any of the "For" Html helpers, but my specific problem is using CheckBoxFor...
I have a model that is of type IEnumerable, where rights is a simple POCO. This ...
7
votes
1answer
3k views
Calling Html.ActionLink in a custom HTML helper
I am designing a custom HTML helper and I would like to execute Html.ActionLink to provide dynamic URL generation.
namespace MagieMVC.Helpers
{
public static class HtmlHelperExtension
...
7
votes
2answers
7k views
ASP.NET MVC: Render checkbox list from MultiSelectList
How do you associate a MultiSelectList with a list of checkboxes?
eg. I pass something like this to the model
model.Groups = new MultiSelectList(k.Groups, "Id", "Name", selectedGroups)
How ...
7
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
471 views
A public open source HtmlHelper repository for sharing “controls”
After using the MVC framework for a little while now I must say I love it, but in my opinion there has always been one thing that poops on the MVC party cake. The lack of good, reusable and portable ...
7
votes
4answers
2k views
How do I access HtmlHelper methods from within MY OWN HtmlHelper?
I am writing my own HtmlHelper extenstion for ASP.NET MVC:
public static string CreateDialogLink (this HtmlHelper htmlHelper, string linkText,
string ...
6
votes
3answers
125 views
Custom HtmlHelper Renders Text and not Markup
I have written a basic HtmlHelper. Here's a test I wrote that simplifies what I was doing and to provide self assurance that it is happening when I use StringBuilder and TagBuilder objects:
public ...
6
votes
2answers
280 views
Has anyone a great library for the missing MVC 3 html form field helpers?
I'm building an application using ASP.net MVC 3 and I'm wondering if anyone knows a great library
to fill the gaps of the build-in html form field helpers?
E.g. creating a Textbox is easy:
...
6
votes
2answers
1k views
MVC HTML Helpers and Lambda Expressions
I understand Lambda queries for the most part, but when I am trying to learn MVC, and I see the default Scaffolding templates, they use Lambda expressions for so many components.
One for example is ...
6
votes
5answers
951 views
ASP.NET MVC 3 HtmlHelper Exception does not recognize ModelMetadata on inherited interface
After upgrading to MVC 3 RTM I get an exception where it previously worked.
Here is the scenario. I have several objects that use the same underlying interfaces IActivity and IOwned.
IActivity ...
6
votes
3answers
2k views
Knockout.js and MVC
Just started playing with knockout.Js which is a fantastic framework Steve's really done well with that one. One thing I can't seem to do at the minute is impliment it with my Html Helpers. So for ...
6
votes
1answer
4k views
How do i set focus to a text box Html.TextBoxFor - mvc 2
I'm trying to set focus on a text box which generated in the following way:
<%=Html.TextBoxFor(model => model.Email, new { style = "width:190px;Border:0px", maxsize = 190 })%>
i tried to use ...
6
votes
1answer
737 views
Bug? Client-side validation in ASP.NET MVC 2 causes ValidationSummary message to show even if there is no error
With client-side validation turned on in ASP.NET MVC 2 RC2, the validation summary message is visible even when I first load my Edit.aspx page. It does not show in bold red, however, just plain text. ...
6
votes
3answers
963 views
ASP.NET MVC 2 Data annotations in a dynamically generated model
I am creating an asp.net mvc 2 application generating my view model dynamically depending on user input. Simply put, the user is able to choose which fields he wants to see in his View.
Since the ...
6
votes
7answers
12k views
Is there an ASP.NET MVC HtmlHelper for image links? [closed]
Possible Duplicate:
ASP.NET MVC Ajax.ActionLink with Image
The Html.RouteLink() HtmlHelper works great for text links. But what's the best way to link an image?
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..
...
5
votes
1answer
88 views
handling onchange event in html.dropdownlist razor MVC
i'm handle onchange event with a selected value by simple html like this :
<select onchange="location = this.value;">
<option value="/product/categoryByPage?PageSize=15" ...