Brad Wilson

9,453
reputation
545 views

Registered User

name Brad Wilson
member for 1 year
seen Dec 10 at 0:41
website
location Redmond, WA, USA
age 37
Technologist. Agile Evangelist. Poker Player. Amateur Neologist. Metalhead. xUnit.net co-creator. Code monkey on the ASP.NET MVC team. All-around Apple fanboy.
Dec
6
awarded  Mortarboard
Dec
3
comment Abuse of C# lambda expressions or Syntax brilliance?
It's no less opaque in Intellisense than anonymous objects.
Dec
1
comment ASP.NET MVC: ValidationAttribute and localized ErrorMessage
Yep, that's true. DataAnnotations exist to be used outside of ASP.NET, so they don't know anything about App_XxxResources and just work with traditional resource files.
Nov
16
comment Which C#/.NET Dependency Injection frameworks are worth looking into?
ObjectBuilder, actually. The underpinnings of Unity.
Nov
3
awarded  Enlightened
Oct
11
accepted simultaneous Outlook reminders on multiple devices
Oct
5
accepted ASP.NET MVC 2 - Implementing custom Metadata and Validator Providers
Oct
2
answered ASP MVC won’t render selected value for a Select List
Oct
2
answered Why Does the Entity Framework make so Many Roundtrips to the Database?
Oct
2
answered ASP.NET MVC 2 - Implementing custom Metadata and Validator Providers
Sep
26
answered ASP.NET MVC: ValidationAttribute and localized ErrorMessage
Sep
26
comment Including an anchor tag in an asp.net mvc Html.ActionLink
There are two: public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, string hostName, string fragment, object routeValues, object htmlAttributes); public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, string hostName, string fragment, RouteValueDictionary routeValues, IDictionary<string, object> htmlAttributes);
Sep
16
accepted How to disable Partial Views ViewState?
Sep
10
accepted Many-to-many relationships in ASP.NET Dynamic Data
Sep
4
awarded  Good Answer
Aug
28
comment How can I disable session state in ASP.NET MVC?
This is fixed in MVC 2. We fixed the session state temp data provider that it won't throw unless you actually try to read/write the temp data.
Aug
28
comment simultaneous Outlook reminders on multiple devices
Yes, that is exactly what I'm saying.
Aug
24
accepted What is ModelState.IsValid valid for in ASP.NET MVC in NerdDinner?
Aug
21
awarded  Nice Answer
Aug
17
accepted Test class constructors not executing when running an xUnit Theory individually?
Aug
17
awarded  Yearling
Aug
16
answered How does the Html Helper, RenderPartial, work? How can I implement a helper that can bring in content from a partial view?
Aug
15
answered Test class constructors not executing when running an xUnit Theory individually?
Aug
14
answered Running portion of a TeamBuild as x64 [for xunit.net tests]
Aug
13
awarded  Nice Answer
Aug
12
awarded  Nice Answer
Aug
12
accepted Trapping Error Status in MSBuild
Aug
10
accepted In xUnit.net, is it possible to run tests in order?
Aug
9
answered How to disable Partial Views ViewState?
Aug
9
comment Can TransactionScope rollback be used with Selenium or Watin?
You need to find a way to enable transaction support in LINQ to SQL so that it can join into the existing transaction scope.
Aug
9
answered Trapping Error Status in MSBuild
Aug
9
answered Localized xUnit.net Output in Visual Studio Output Window
Aug
9
answered In xUnit.net, is it possible to run tests in order?
Aug
3
awarded  Nice Answer
Jul
23
accepted MVC Re-populating posted data in a Html.TextBox from the Model (using Dictionaries)
Jul
17
comment Bug in: System.Web.UI.Page.InitOutputCache() or in System.Web.Mvc???
Just a wild guess, but one is 5 seconds and one is 5 minutes. Seems like a parameter problem, no?
Jul
16
answered MVC Re-populating posted data in a Html.TextBox from the Model (using Dictionaries)
Jul
16
comment “A potentially dangerous Request.Form value..” error when ModelState.IsValid is false
You have 1.0 installed, and I see the validatedRequest="false" line is there, so I'm not clear why you should be hitting this error (unless you've added "validateRequest=true" to the <%@ Page %> directive in your actual page).
Jul
15
accepted DataSources folder in MVC?
Jul
15
answered DataSources folder in MVC?
Jul
15
answered Model not rendering model values after post.
Jul
15
comment Setting ViewData item in a Partial to be read in a View
You should be able to make that decision in the controller (or at least in the parent view)...
Jul
15
accepted Cannot find DataContractJsonSerializer from an Asp.Net Mvc application…
Jul
15
answered ASP.NET isn’t automatically rebuilding
Jul
15
comment Is it possible to have a linked list of different data types?
Jeez, C? Not even C++ with its wonderful templates? Get out of the 1970s! :)
Jul
15
answered Is it possible to suppress the Web Forms Designer in Visual Studio from being opened?
Jul
15
comment ASP.NET-MVC and TFS: Getting TF30076 Error
FYI, those APIs are not necessarily designed to be called in server applications, so tread lightly and keep a careful watch out for any leaks or accidentally shared connections.
Jul
15
comment Setting ViewData item in a Partial to be read in a View
There is no official recommendation. For your given example, using CSS to hide things would be best. Making decisions about what's visible or not should be a model or controller concern, not a view concern, IMO.
Jul
15
answered “A potentially dangerous Request.Form value..” error when ModelState.IsValid is false
Jul
15
answered Cannot find DataContractJsonSerializer from an Asp.Net Mvc application…