0
votes
Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?
Wrap it in an interface and mock it.
…
0
votes
Mocking Asp.net-mvc Controller Context
I find that long mocking procedure to be too much friction.
The best way we have found - using ASP.NET MVC on a real project - is to abstract the HttpContext to an IWebContext interface tha …
5
votes
How do I handle page flow in MVC (particularly asp.net)
Investigate the post-redirect-get pattern.
http://weblogs.asp.net/mhawley/archive/tags/MVC/default.aspx …
0
votes
Best mock framework that can do both WebForms and MVC?
This is sort of a silly question, but I prefer Rhino Mocks as it represents a more complete understanding of mocks vs. …
4
votes
What’s the best way to implement field validation using ASP.NET MVC?
There are some new validation features in Preview 5.
http:/ …
3
votes
Have you got a CascadingDropDown working with ASP.NET MVC?
jQuery, action, return JSON.
http://devlicio.us/blogs/mike_ …
2
votes
Styling Html Helpers MVC.Net
use the htmlAttributes parameter with anonymous type, like tihs:
<%=Html.TextBox("txtName","20", new { @class = "test"}) %>
…
1
vote
How do you use the new ModelBinder classes in ASP.NET MVC Preview 5
http://weblogs.asp.net/scottgu/archive/2008/09/02/asp-net-mvc-previe …
1
vote
ASP.NET Model-view-controller (MVC) - where do I start from?
@Sara Chipps is right - you have to "cut your teeth" on it.
Build a simple blog engine or something just for kicks. That's a good start.
You should review …
1
vote
What’s the best way to implement user controls in ASP.NET MVC?
Yeah, you can do RenderPartial. That's a good start. But eventually these guys will need logic and other controllery type stuff. Be on the lookout for a subcontroller implementation from the fra …
1
vote
Asp.Net MVC: How to determine if you’re currently on a specific view
Here is something a little different, use a FilterAttribute:
[NavigationLocationFilter("Products")]
public ViewResult List()
{
return View();
}
...
…
0
votes
6
votes
Unit testing MVC.net Redirection
[TestFixture]
public class RedirectTester
{
[Test]
public void Should_redirect_to_success_action()
{
var controller = new RedirectController();
var result = controller.Index() as Red …
7
votes
How would you implement a breadcrumb helper in asp.net mvc?
We are using an action filter for this.
...
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
var controller = (Controller) filterContext.C …
1
vote
ASP.NET MVC “Components”
You are looking for subcontrollers. This implementation is the best way to do w …
