|
|
swalther
swalther
 |
|
Stories submitted by swalther
|
|
published 1 month, 13 days ago, submitted by
swalther
1 month, 13 days ago
weblogs.asp.net — In this blog entry, Stephen Walther lists the essential tips and tricks that every developer who uses Visual Studio 2008 should know. The list is kept brief. The list focuses on only those tips and tricks that can be used on a daily basis. Almost all of these tips and tricks are just as useful regardless of whether you are building an ASP.NET Web Forms or ASP.NET MVC application.
read more...
add a comment
|
category: Visual Studio | Views: 766
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 6 days ago
weblogs.asp.net — In this tip, Stephen Walther shows you how to create a custom ASP.NET MVC view engine that supports lightweight, declarative controls. He shows you how to create both simple controls and controls that display database data. He also shows you how to test the rendered output of the lightweight controls. read more...
add a comment
|
category: ASP.NET | Views: 6
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 8 days ago
weblogs.asp.net — In this tip, Stephen Walther demonstrates how you can unit test ASP.NET MVC views without running a Web server. He shows you how to unit test views by creating a custom MVC View Engine and a fake Controller Context. read more...
add a comment
|
category: ASP.NET | Views: 5
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 15 days ago
weblogs.asp.net — In this tip, Stephen Walther shows you how to unit test your data access code by faking the DataContext with an in-memory DataContext.
read more...
add a comment
|
category: ASP.NET | Views: 7
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 19 days ago
weblogs.asp.net — In this tip, Stephen Walther demonstrates how you can write unit tests for MVC controller actions that access a database. He shows you how to create a base unit test class that you can use to unit test your LINQ to SQL controller action code. read more...
add a comment
|
category: ASP.NET | Views: 7
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 20 days ago
weblogs.asp.net — In this tip, Stephen Walther demonstrates how you can use the nVelocity view engine, instead of the normal Web Forms view engine, when displaying views from an ASP.NET MVC application. read more...
add a comment
|
category: ASP.NET | Views: 35
|
|
tags:
ASPNETMVC, NVelocity, ASP.NET, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 20 days ago
weblogs.asp.net — Context is the enemy of testability. In this tip, Stephen Walther demonstrates how you can eliminate, once and for all, the HTTP Context from an ASP.NET MVC application by creating a custom Action Invoker and Controller Factory. read more...
add a comment
|
category: ASP.NET | Views: 7
|
|
tags:
ASP.NET, Tips, ASPNETMVC, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 25 days ago
weblogs.asp.net — Real programmers use the Command window. In this tip, Stephen Walther demonstrates how you can create new ASP.NET MVC project items by firing off macro commands from the Visual Studio 2008 Command window. read more...
add a comment
|
category: ASP.NET | Views: 10
|
|
tags:
MVC, ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
4 months, 27 days ago
weblogs.asp.net — In this tip, Stephen Walther shows you how to create and use templates in the MVC framework that you can use to display database data. He shows you how to create a new MVC Helper method named the RenderTemplate() method.
read more...
add a comment
|
category: ASP.NET | Views: 12
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
5 months, 2 days ago
weblogs.asp.net — In this tip, Stephen Walther demonstrates how you can create unit tests for custom routes that you define for your ASP.NET MVC application. He shows you how to test custom routes by faking the HTTP Context. read more...
add a comment
|
category: ASP.NET | Views: 3
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 27 days ago, submitted by
swalther
5 months, 4 days ago
weblogs.asp.net — In this tip, Stephen Walther shows you how to test ASP.NET intrinsics when building unit tests for an ASP.NET MVC application. He shows you how to create a standard set of fake objects that enables you to fake the current user, the current user roles, the request parameters, session state, and cookies.
read more...
add a comment
|
category: ASP.NET | Views: 106
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 3 days ago, submitted by
swalther
5 months, 4 days ago
weblogs.asp.net — In this blog entry, Stephen Walther demonstrates how to use the xUnit.net testing framework while building an ASP.NET MVC application. He discusses how to build unit tests for controller actions that perform database access. read more...
add a comment
|
category: ASP.NET | Views: 118
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
5 months, 5 days ago
weblogs.asp.net — ASP.NET MVC Tip #11 – Use Standard Controller Action Names by swalther
In this tip, I recommend that you use standard names for your controller actions in order to make your code more transparent to other developers. I propose action names that will work with the default route table and that will work with both C# and VB.NET. read more...
add a comment
|
category: ASP.NET | Views: 9
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
5 months, 14 days ago
weblogs.asp.net — In this tip, Stephen Walther explains why you should call the RedirectToAction() method after submitting form data instead of returning a view. read more...
add a comment
|
category: ASP.NET | Views: 18
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
5 months, 15 days ago
weblogs.asp.net — In this tip, Stephen Walther explains how to create shared views for controller actions. A shared view can be used with multiple controllers. In particular, I explain how to create shared views for displaying and editing database data. read more...
add a comment
|
category: ASP.NET | Views: 27
|
|
tags:
ASPNETMVC, MVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
swalther
5 months, 16 days ago
weblogs.asp.net — In this tip, Stephen Walther discusses how you can create a custom controller base class that exposes actions for performing common database operations such as displaying, inserting, updating, and deleting data. read more...
add a comment
|
category: ASP.NET | Views: 10
|
|
tags:
ASPNETMVC, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|