0
votes
2answers
45 views
Unit Testing HtmlHelper that Needs to Access Data Layer
I am trying to create a unit test for an HtmlHelper that accesses my data layer to get a string. I have looked at a lot of posts around this and I am probably missing something. …
0
votes
3answers
123 views
Persisting Selected Value in MVC DropDownLists
I'm new to MVC, but I've been all over this, read all the documentation and all the questions and all the blog posts I can find, and all I'm doing is getting completely wrapped aro …
0
votes
1answer
41 views
Override EditorForModel Template
Hi,
You can provide alternate templates for individual types, but is it possible to override the template that wraps the label, field and validation up.
Change:
<div class="e …
1
vote
1answer
87 views
Using EditorFor<> to render a drop-down list
So far we can use Html.EditorFor() to dynamically render the appropriate template for a datatype - e.g. string, int, or a custom type, say 'Address'.
Now I want to use EditorFor() …
1
vote
3answers
262 views
ASP.NET MVC: ‘Extend’ Html.TextBox to conditionally have CSS value?
Hello,
I would like to extend ASP.NET MVC's TextBox so it conditionally switches its CSS value (based on data from the Model). However, I don't want to put that logic in my view (b …
