User Brad Wilson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:28:11Z http://stackoverflow.com/feeds/user/1554 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1510652/asp-mvc-wont-render-selected-value-for-a-select-list/1512196#1512196 1 Answer by Brad Wilson for ASP MVC won't render selected value for a Select List Brad Wilson 2009-10-02T22:56:30Z 2009-10-02T22:56:30Z <p>It's a bug. It's currently assigned to me, in fact. :)</p> http://stackoverflow.com/questions/1512154/why-does-the-entity-framework-make-so-many-roundtrips-to-the-database/1512186#1512186 -1 Answer by Brad Wilson for Why Does the Entity Framework make so Many Roundtrips to the Database? Brad Wilson 2009-10-02T22:52:30Z 2009-10-02T22:52:30Z <p>It can be done, but it's extremely painful in .NET 3.5. They've made this much easier in .NET 4.0.</p> http://stackoverflow.com/questions/1510459/asp-net-mvc-2-implementing-custom-metadata-and-validator-providers/1512180#1512180 1 Answer by Brad Wilson for ASP.NET MVC 2 - Implementing custom Metadata and Validator Providers Brad Wilson 2009-10-02T22:51:19Z 2009-10-02T22:51:19Z <p>Here's an example validator provider, using Enterprise Library:</p> <p><a href="http://bradwilson.typepad.com/blog/2009/10/enterprise-library-validation-example-for-aspnet-mvc-2.html" rel="nofollow">http://bradwilson.typepad.com/blog/2009/10/enterprise-library-validation-example-for-aspnet-mvc-2.html</a></p> <p>The metadata sample is coming soon.</p> http://stackoverflow.com/questions/1481376/asp-net-mvc-validationattribute-and-localized-errormessage/1481635#1481635 0 Answer by Brad Wilson for ASP.NET MVC: ValidationAttribute and localized ErrorMessage Brad Wilson 2009-09-26T16:56:01Z 2009-09-26T16:56:01Z <p>Make sure in the resource editor that your resource visibility is set to "Public" and not "Internal". Otherwise the reflection done by DataAnnotations won't work.</p> http://stackoverflow.com/questions/881281/what-is-modelstate-isvalid-valid-for-in-asp-net-mvc-in-nerddinner/881351#881351 3 Answer by Brad Wilson for What is ModelState.IsValid valid for in ASP.NET MVC in NerdDinner? Brad Wilson 2009-05-19T07:07:39Z 2009-08-24T08:58:02Z <p>ModelState.IsValid tells you if any model errors have been added to ModelState.</p> <p>The default model binder will add some errors for basic type conversion issues (for example, passing a non-number for something which is an "int"). You can populate ModelState more fully based on whatever validation system you're using.</p> <p>The sample DataAnnotations model binder will fill model state with validation errors taken from the DataAnnotations attributes on your model.</p> http://stackoverflow.com/questions/1283079/how-does-the-html-helper-renderpartial-work-how-can-i-implement-a-helper-that/1283690#1283690 3 Answer by Brad Wilson for How does the Html Helper, RenderPartial, work? How can I implement a helper that can bring in content from a partial view? Brad Wilson 2009-08-16T07:33:04Z 2009-08-16T07:33:04Z <p>We are fixing this in MVC 2. You will be able to call Html.Partial() and get the actual contents of the view as a string.</p> http://stackoverflow.com/questions/1267130/test-class-constructors-not-executing-when-running-an-xunit-theory-individually/1282313#1282313 0 Answer by Brad Wilson for Test class constructors not executing when running an xUnit Theory individually? Brad Wilson 2009-08-15T16:54:16Z 2009-08-15T16:54:16Z <p>We attempted to reproduce this with xUnit.net 1.5 Beta and cannot.</p> http://stackoverflow.com/questions/1276954/running-portion-of-a-teambuild-as-x64-for-xunit-net-tests/1279002#1279002 1 Answer by Brad Wilson for Running portion of a TeamBuild as x64 [for xunit.net tests] Brad Wilson 2009-08-14T17:06:02Z 2009-08-14T17:06:02Z <p>xUnit.net runs its tests inside the same process as the runner, in a separate AppDomain. Since MSBuild is flagged as 32-bit-only, any tests run with the MSBuild xunit task must run in 32-bit mode.</p> <p>The simplest work-around is to not use the MSBuild task, but instead to shell out to the console runner. Since that creates a new process, it will run in 64-bit mode by default. Also, if you're using the 1.5 beta, we have included EXEs which can force 32-bit mode (xunit.console.x86.exe), which solves your 32- vs. 64-bit test issues.</p> http://stackoverflow.com/questions/1250866/how-to-disable-partial-views-viewstate/1250876#1250876 3 Answer by Brad Wilson for How to disable Partial Views ViewState? Brad Wilson 2009-08-09T07:27:12Z 2009-08-09T07:27:12Z <p>Server side forms are not supported in ASP.NET MVC (specifically, this):</p> <pre><code>&lt;form id="form1" runat="server"&gt; </code></pre> <p>Use Html.BeginForm() to open a new form in MVC.</p> http://stackoverflow.com/questions/1059230/trapping-error-status-in-msbuild/1250309#1250309 1 Answer by Brad Wilson for Trapping Error Status in MSBuild Brad Wilson 2009-08-09T01:10:49Z 2009-08-09T01:10:49Z <p>Go grab 1.5 Beta. We fixed this by introducing the ExitCode output parameter to our xunit MSBuild task!</p> <p><a href="http://xunit.codeplex.com/Release/ProjectReleases.aspx" rel="nofollow">http://xunit.codeplex.com/Release/ProjectReleases.aspx</a></p> http://stackoverflow.com/questions/1227362/localized-xunit-net-output-in-visual-studio-output-window/1250307#1250307 0 Answer by Brad Wilson for Localized xUnit.net Output in Visual Studio Output Window Brad Wilson 2009-08-09T01:09:20Z 2009-08-09T01:09:20Z <p>We fixed this for English, but we don't have the resources (or, really, the capability) to cover all Visual Studio languages. :(</p> <p>Sorry!</p> http://stackoverflow.com/questions/1250062/in-xunit-net-is-it-possible-to-run-tests-in-order/1250305#1250305 2 Answer by Brad Wilson for In xUnit.net, is it possible to run tests in order? Brad Wilson 2009-08-09T01:08:15Z 2009-08-09T01:08:15Z <p>There is a sample in our Samples project named PrioritizedFixtureSample which allows you to control the ordering of tests.</p> <p>See the samples in our latest release: <a href="http://xunit.codeplex.com/Release/ProjectReleases.aspx" rel="nofollow">http://xunit.codeplex.com/Release/ProjectReleases.aspx</a></p> http://stackoverflow.com/questions/873849/vs-2008-sp1-over-remote-desktop-constant-repainting 4 VS 2008 SP1 over Remote Desktop: Constant Repainting? Brad Wilson 2009-05-17T03:33:16Z 2009-07-29T23:05:26Z <p>The text editor in Visual Studio 2008 was very fast over Remote Desktop.</p> <p>The text editor in Visual Studio 2008 SP1 is very slow over Remote Desktop, causing way too much repainting (and resulting flickering). The slower your connection is, the worse the problem is, but it's aggravating enough even when RDPing into a machine on the same LAN.</p> <p>The problem seems to be limited to Visual Studio. Doing the same editing actions in another editor (like Notepad and Notepad2) are quite fast with no full-editor repainting.</p> <p>Anybody know what's causing it, and can anything be done about it?</p> <p>The machine in question is running Windows Server 2008 Enterprise. I've noticed it RDPing it from a variety of OSes, including Windows Vista, Windows Server 2008, and Windows 7.</p> <p>Things I've tried that haven't made any difference:</p> <ul> <li>Changing the font to Arial Black</li> <li>Using a non-TrueType font</li> <li>Turning off change tracking</li> <li>Turning off addins (I'm running TD.NET, Refactor! Pro, and GhostDoc)</li> <li>Turning off Animate Tools (that was already off, but I thought I'd list it anyway)</li> <li>Turning off the Navigation Bar</li> </ul> <p><strong>Update:</strong> For the moment, the problem seems solved, because in VS2010 Beta 1, the painting issue over RDP is now gone.</p> http://stackoverflow.com/questions/1140375/mvc-re-populating-posted-data-in-a-html-textbox-from-the-model-using-dictionarie/1140529#1140529 0 Answer by Brad Wilson for MVC Re-populating posted data in a Html.TextBox from the Model (using Dictionaries) Brad Wilson 2009-07-16T21:50:06Z 2009-07-16T21:50:06Z <p>Duplicate of <a href="http://stackoverflow.com/questions/1133393/model-not-rendering-model-values-after-post">http://stackoverflow.com/questions/1133393/model-not-rendering-model-values-after-post</a></p> http://stackoverflow.com/questions/1133027/datasources-folder-in-mvc/1134550#1134550 3 Answer by Brad Wilson for DataSources folder in MVC? Brad Wilson 2009-07-15T22:54:25Z 2009-07-15T22:54:25Z <p>DataSources are not supported (and do not work) in MVC.</p> http://stackoverflow.com/questions/1133393/model-not-rendering-model-values-after-post/1134547#1134547 1 Answer by Brad Wilson for Model not rendering model values after post. Brad Wilson 2009-07-15T22:53:41Z 2009-07-15T22:53:41Z <p>If values are present in ModelState, it shows them instead of the values in your model, since they represent the "last" known state provided from the user.</p> <p>You should clear out ModelState if you're not actually intending the user to re-do their edits.</p> http://stackoverflow.com/questions/1131157/asp-net-isnt-automatically-rebuilding/1131389#1131389 0 Answer by Brad Wilson for ASP.NET isn't automatically rebuilding Brad Wilson 2009-07-15T13:24:33Z 2009-07-15T13:24:33Z <p>Only code which is in App_Code will be automatically recompiled when it changes. If your code lives anywhere else, then it's part of the pre-built DLL you get when you hit "compile".</p> http://stackoverflow.com/questions/1131344/is-it-possible-to-suppress-the-web-forms-designer-in-visual-studio-from-being-ope/1131363#1131363 0 Answer by Brad Wilson for Is it possible to suppress the Web Forms Designer in Visual Studio from being opened? Brad Wilson 2009-07-15T13:20:59Z 2009-07-15T13:20:59Z <p>It's a per-user setting, by right clicking on the .CS file for the form and saying "Open With...", then changing the default editor for that type.</p> <p>AFAIK, there is no way to force that setting via TFS.</p> http://stackoverflow.com/questions/1123973/a-potentially-dangerous-request-form-value-error-when-modelstate-isvalid-is-f/1131254#1131254 0 Answer by Brad Wilson for "A potentially dangerous Request.Form value.." error when ModelState.IsValid is false Brad Wilson 2009-07-15T12:59:09Z 2009-07-15T12:59:09Z <p>I'm guessing this project was migrated from a pre-1.0 RTM project.</p> <p>Original ASP.NET has page-level "dangerous input" validation that you're tripping up. We have turned it off system-wide with a change to the Web.config file in the Views folder, but I don't remember exactly when we made that change. If your project pre-dates this change, then you won't have that setting in your Web.config file in the Views folder.</p> <p>So you can make a new MVC project and look at the Web.config file to see what setting(s) you might want to copy over. You can also disable this on a page-by-page basis if you want.</p> <p><a href="http://www.asp.net/learn/whitepapers/request-validation/" rel="nofollow">http://www.asp.net/learn/whitepapers/request-validation/</a></p> http://stackoverflow.com/questions/1127264/cannot-find-datacontractjsonserializer-from-an-asp-net-mvc-application/1131227#1131227 1 Answer by Brad Wilson for Cannot find DataContractJsonSerializer from an Asp.Net Mvc application... Brad Wilson 2009-07-15T12:53:48Z 2009-07-15T12:53:48Z <p>Make sure you've referenced the DLL where this type lives: System.ServiceModel.Web.dll</p> http://stackoverflow.com/questions/1131160/setting-viewdata-item-in-a-partial-to-be-read-in-a-view/1131203#1131203 1 Answer by Brad Wilson for Setting ViewData item in a Partial to be read in a View Brad Wilson 2009-07-15T12:48:14Z 2009-07-15T12:48:14Z <p>That is working as designed.</p> <p>Each partial view gets it own copy of the view data so that any changes it makes don't taint the original. What you want to do, we've expressly prohibited.</p> http://stackoverflow.com/questions/1114166/i-created-my-own-view-state-facility-for-mvc-good-or-weak-practice/1116888#1116888 1 Answer by Brad Wilson for I created my own view state facility for MVC. Good or weak practice? Brad Wilson 2009-07-12T20:50:00Z 2009-07-12T20:50:00Z <p>The question is reasonable.</p> <p>Web applications are going to need to store data between requests that's associated with either the user, or the specific request. The typical mechanisms -- hidden form values, server side state, and cookies -- all have their advantages and disadvantages.</p> <p>When storing information specific to a given request, I tend to default towards hidden form values, because it offers the best scalability (no server-side information store). The downside is, of course, that the page can become bloated if you aren't careful about exactly how much information you store. You also need to ensure that the posted-back data is valid, since it could be tampered with by bad guys (digital signatures and encryption both being reasonable solutions).</p> <p>So to me, your solution seems perfectly reasonable. I have done similar things in the past (with my Dynamic Data for MVC sample), even going so far as to build a custom model binder which allowed me to get access to the deserialized object directly in my action methods (which made unit testing them simpler, since they weren't relying on having encrypted data in form fields).</p> http://stackoverflow.com/questions/1061561/validate-complex-types-with-dataannotations/1061720#1061720 0 Answer by Brad Wilson for Validate complex types with DataAnnotations Brad Wilson 2009-06-30T04:25:59Z 2009-06-30T04:25:59Z <p>Make sure the names that end up in the HTML fields line up with the property names of the class.</p> <p>For example, if you have this:</p> <pre><code>public class Contact { public string FirstName { get; set; } public string LastName { get; set; } public Address Address { get; set; } } public class Address { public string Street { get; set; } public string City { get; set; } [...] } </code></pre> <p>Your calls to the HTML helpers should look like this:</p> <pre><code>&lt;%= Html.TextBox("FirstName") %&gt; &lt;%= Html.TextBox("LastName") %&gt; &lt;%= Html.TextBox("Address.Street") %&gt; &lt;%= Html.TextBox("Address.City") %&gt; [...] </code></pre> http://stackoverflow.com/questions/1061613/using-system-attribute-class/1061706#1061706 1 Answer by Brad Wilson for Using System.Attribute class Brad Wilson 2009-06-30T04:21:39Z 2009-06-30T04:21:39Z <p>You're on the right track.</p> <p>Also, there is a [DisplayName] attribute already tailor-made for this purpose, which has been in .NET since 2.0.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.displaynameattribute.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.componentmodel.displaynameattribute.aspx</a></p> http://stackoverflow.com/questions/820468/how-does-dataannotationsmodelbinder-work-with-custom-viewmodels/991977#991977 3 Answer by Brad Wilson for How does DataAnnotationsModelBinder work with custom ViewModels? Brad Wilson 2009-06-14T02:11:53Z 2009-06-14T02:11:53Z <p>The fix for this issue is simple, as Martijn has noted.</p> <p>In the BindProperty method, you will find this line of code:</p> <pre><code>if (modelState.Errors.Count == 0) { </code></pre> <p>It should be changed to:</p> <pre><code>if (modelState == null || modelState.Errors.Count == 0) { </code></pre> <p>We are intending to include DataAnnotations support in MVC 2, which will include the DataAnnotationsModelBinder. This feature will be part of the first CTP.</p> http://stackoverflow.com/questions/881300/how-do-i-get-database-validation-among-my-rule-violations-on-asp-net-mvc/881348#881348 1 Answer by Brad Wilson for How do I get database validation among my rule violations on ASP.NET MVC? Brad Wilson 2009-05-19T07:06:00Z 2009-05-19T07:06:00Z <p>You need to catch the exceptions thrown by your Data Access Layer, and convert those into calls which update the ModelState to indicate the errors in question. There's not really a good way to do this on a global level, since specific SQL errors will only be able to be interpreted at the time they're called, rather that handled in a generic way.</p> http://stackoverflow.com/questions/877712/asp-net-mvc-httpcontext-and-dependency-injection/878370#878370 1 Answer by Brad Wilson for ASP.NET MVC: HTTPContext and Dependency Injection Brad Wilson 2009-05-18T15:42:01Z 2009-05-18T15:42:01Z <p>I'm not sure why you're bothering. It seems like just using HttpContext.Current directly in HttpContextUserProvider is the right thing to do. You're never going to be substituting in a different HttpContext...</p> http://stackoverflow.com/questions/878339/asp-net-custom-onfocus-event-for-textbox/878355#878355 4 Answer by Brad Wilson for asp.net custom onfocus event for textbox Brad Wilson 2009-05-18T15:39:03Z 2009-05-18T15:39:03Z <p>There's nothing built-in, because focusing a textbox doesn't cause the page to submit itself. You could always attach an event to the focus on the client side, and then submit some AJAX request to the server, but I'm curious to know what exactly you're trying to achieve here.</p> http://stackoverflow.com/questions/876390/reliable-cross-browser-way-of-setting-status-bar-text/876395#876395 6 Answer by Brad Wilson for Reliable cross browser way of setting Status bar text Brad Wilson 2009-05-18T05:38:57Z 2009-05-18T05:38:57Z <p>For security reasons, most modern browsers disable status bar access by default.</p> http://stackoverflow.com/questions/876342/storing-passwords-in-sql-server/876366#876366 2 Answer by Brad Wilson for storing passwords in SQL Server Brad Wilson 2009-05-18T05:27:04Z 2009-05-18T05:27:04Z <p>Encryption for sensitive data is good. However, with passwords, you should never need to know the original value, and since anything which is encrypted can also be decrypted, you put that information at jeopardy of being discovered.</p> <p>Instead, you should keep a hash of the password. This process takes the value and generates what amounts to a very complicated checksum. Given the number, there's no way to go back to the original password, which increases the security of such information. When you want to know whether someone has given you the correct password, you hash the value they gave you and compare the hashes.</p> <p>Security is a complicated topic. Even with hashes, you can end up having a system that has significant security flaws. Getting the help of a security consultant is not a bad idea if nobody else on your team already has that kind of knowledge.</p> http://stackoverflow.com/questions/21288/which-c-net-dependency-injection-frameworks-are-worth-looking-into/21319#21319 Comment by Brad Wilson on Which C#/.NET Dependency Injection frameworks are worth looking into? Brad Wilson 2009-11-16T22:32:58Z 2009-11-16T22:32:58Z ObjectBuilder, actually. The underpinnings of Unity. http://stackoverflow.com/questions/274586/including-an-anchor-tag-in-an-asp-net-mvc-html-actionlink/275499#275499 Comment by Brad Wilson on Including an anchor tag in an asp.net mvc Html.ActionLink Brad Wilson 2009-09-26T16:26:47Z 2009-09-26T16:26:47Z 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&lt;string, object&gt; htmlAttributes); http://stackoverflow.com/questions/884852/how-can-i-disable-session-state-in-asp-net-mvc Comment by Brad Wilson on How can I disable session state in ASP.NET MVC? Brad Wilson 2009-08-28T16:40:43Z 2009-08-28T16:40:43Z 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. http://stackoverflow.com/questions/13498/simultaneous-outlook-reminders-on-multiple-devices/13505#13505 Comment by Brad Wilson on simultaneous Outlook reminders on multiple devices Brad Wilson 2009-08-28T16:09:24Z 2009-08-28T16:09:24Z Yes, that is exactly what I'm saying. http://stackoverflow.com/questions/1004292/can-transactionscope-rollback-be-used-with-selenium-or-watin/1004462#1004462 Comment by Brad Wilson on Can TransactionScope rollback be used with Selenium or Watin? Brad Wilson 2009-08-09T01:12:36Z 2009-08-09T01:12:36Z You need to find a way to enable transaction support in LINQ to SQL so that it can join into the existing transaction scope. http://stackoverflow.com/questions/1140801/bug-in-system-web-ui-page-initoutputcache-or-in-system-web-mvc Comment by Brad Wilson on Bug in: System.Web.UI.Page.InitOutputCache() or in System.Web.Mvc??? Brad Wilson 2009-07-17T01:12:12Z 2009-07-17T01:12:12Z Just a wild guess, but one is 5 seconds and one is 5 minutes. Seems like a parameter problem, no? http://stackoverflow.com/questions/1123973/a-potentially-dangerous-request-form-value-error-when-modelstate-isvalid-is-f/1131254#1131254 Comment by Brad Wilson on "A potentially dangerous Request.Form value.." error when ModelState.IsValid is false Brad Wilson 2009-07-16T21:48:09Z 2009-07-16T21:48:09Z You have 1.0 installed, and I see the validatedRequest=&quot;false&quot; line is there, so I'm not clear why you should be hitting this error (unless you've added &quot;validateRequest=true&quot; to the &lt;%@ Page %&gt; directive in your actual page). http://stackoverflow.com/questions/1131160/setting-viewdata-item-in-a-partial-to-be-read-in-a-view/1131203#1131203 Comment by Brad Wilson on Setting ViewData item in a Partial to be read in a View Brad Wilson 2009-07-15T22:24:03Z 2009-07-15T22:24:03Z You should be able to make that decision in the controller (or at least in the parent view)... http://stackoverflow.com/questions/1131313/is-it-possible-to-have-a-linked-list-of-different-data-types Comment by Brad Wilson on Is it possible to have a linked list of different data types? Brad Wilson 2009-07-15T13:23:09Z 2009-07-15T13:23:09Z Jeez, C? Not even C++ with its wonderful templates? Get out of the 1970s! :) http://stackoverflow.com/questions/1122529/asp-net-mvc-and-tfs-getting-tf30076-error Comment by Brad Wilson on ASP.NET-MVC and TFS: Getting TF30076 Error Brad Wilson 2009-07-15T13:15:17Z 2009-07-15T13:15:17Z 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. http://stackoverflow.com/questions/1131160/setting-viewdata-item-in-a-partial-to-be-read-in-a-view/1131203#1131203 Comment by Brad Wilson on Setting ViewData item in a Partial to be read in a View Brad Wilson 2009-07-15T13:09:14Z 2009-07-15T13:09:14Z 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. http://stackoverflow.com/questions/1127357/why-does-asp-net-mvc-html-checkbox-output-two-inputs-with-the-same-name Comment by Brad Wilson on Why does ASP.NET MVC Html.CheckBox output two INPUTs with the same name? Brad Wilson 2009-07-15T12:52:18Z 2009-07-15T12:52:18Z Why don't you just put the boolean in your action method signature and let model binding do the work for you? http://stackoverflow.com/questions/1128304/passing-container-eval-to-html-readerpartial-inside-asp-net-repeater-control/1128884#1128884 Comment by Brad Wilson on Passing Container.Eval to (Html.ReaderPartial) inside ASP.NET Repeater Control Brad Wilson 2009-07-15T12:50:15Z 2009-07-15T12:50:15Z +1 for &quot;don't make life any harder than it needs to be&quot;. http://stackoverflow.com/questions/1116882/pros-and-cons-of-different-mvc-frameworks-for-net/1116895#1116895 Comment by Brad Wilson on Pros and cons of different MVC frameworks for .NET Brad Wilson 2009-07-12T20:55:21Z 2009-07-12T20:55:21Z Your con isn't really true, since ASP.NET MVC can run on Mono. http://stackoverflow.com/questions/881300/how-do-i-get-database-validation-among-my-rule-violations-on-asp-net-mvc/881352#881352 Comment by Brad Wilson on How do I get database validation among my rule violations on ASP.NET MVC? Brad Wilson 2009-05-19T15:28:53Z 2009-05-19T15:28:53Z In general, I would be very careful about so blindly putting exception status messages into the page for end users to see, because you could be inadvertantly giving about very sensitive information about the shape of your database.