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:/ …
0
votes
Where do you store your database connectionstring?
Keep it in a configuration file. Use a robust data access strategy provided by tools like NHibernate or Linq to Sql.
…
4
votes
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 …
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 …
1
vote
ASP.NET MVC “Components”
You are looking for subcontrollers. This implementation is the best way to do w …
0
votes
What Does the DRY Principle Actually Look Like in ASP.NET MVC?
use filter attributes to manage aspects (authentication, navigation, breadcrumbs, etc)
use a layer sup …
-5
votes
Should I return IList or List to the Controller in MVC ?
Consider returning an array, consider accepting IEnumerable as a parameter.
…
-4
votes
0
votes
0
votes
How would you copy an ASP.Net project ?
Download VisualSVN Server, install it locally (takes 5 minutes) and create a repository for your project. Then create a branch.
…
0
votes
6
votes
How to make ASP.NET development server run on port 80?
Project properties > Web > select Specific Port and fill in 80
…
