0
votes
1answer
20 views
How to pass parameters to Controller-Action using LinkButton Click
Hi,
I have a list view for one of my controller's index action.
In that View's source, I have added the following code to the for loop present inside the source of View.
<%= H …
4
votes
5answers
2k 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 maste …
0
votes
1answer
89 views
view data dictionary overriding Model data in asp.net mvc
Hello gurus,
I have a view to create a user as follows:
<% using (Html.BeginForm("SaveUser", "Security")) {%>
<p>
<label for="UserName"> …
1
vote
3answers
200 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 { …
3
votes
5answers
274 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" …
0
votes
3answers
126 views
Why can’t I specify a `name` attribute in an ASP.NET MVC form using Html.Helpers?
I am playing around with the ASP.NET MVC Html.Helpers and I noticed that say for instance:
Html.Textbox("test");
will render the name attribute to "name=test" and the id tag wil …
2
votes
2answers
488 views
ASP.NET MVC: Using LINQ to XML to render (X)HTML
There has been a lot of discussions on View-engines for ASP.NET MVC and some criticisms against the inline "tag-soup" with for-loops and thing like it.
The alternative or compleme …
2
votes
2answers
514 views
How to add static list of items in MVC Html.DropDownList()
I would like to assign a static list of items in a SelectList() to a Html.DropDownList() in ASP.NET MVC, what is the best practice?
I was about to try to find a way to use new Sel …
4
votes
4answers
673 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 writ …
1
vote
1answer
624 views
Can I make ASP.NET MVC Html.RouteLink() return a url for my home page without an ID?
I've got a single route in my Global.asax.vb page like this...
Shared Sub RegisterRoutes(ByVal routes As RouteCollection)
routes.IgnoreRoute("{resource}.axd/{*pathInfo}")
…
1
vote
1answer
159 views
List of HTML Helpers you use
I have found Html Helpers extremely useful to simplify view pages code.
Apart from the ones included in the latest release of Asp.Net Mvc which one do you use?
How much you …
1
vote
1answer
269 views
MVC helper extension
why do i get the error " Expected class, interface, enum or struct" with string underlined?
public static string IsSelected(this HtmlHelper helper, string A, string B)
{
…
6
votes
10answers
2k views
Styling Html Helpers MVC.Net
If i have a 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 n …
1
vote
2answers
273 views
HTMl Helpers in MVC: How do I render html tags with helper such as ActionLink?
When using ActionLink to render data from database which has HTML tags
(ie <p>)
incorporated in it, ActionLink escapes the tags. What is the best way to handle this?
2
votes
1answer
692 views
Do custom HTML Helper Classes violate the ASP.Net MVC model?
On a related post I mentioned that I have found custom HTML helpers to be just that, helpful, when developing. For instance, when I need paging for a "grid" I have a custom helper …
