User davcar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T04:50:09Zhttp://stackoverflow.com/feeds/user/5033http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/722655/asp-net-mvc-html-radiobutton-exception6ASP.NET MVC Html.RadioButton Exceptiondavcar2009-04-06T18:42:04Z2009-05-05T09:09:55Z
<p>I haver a simple radio button list on my page that I render with the following in my view: </p>
<pre><code><label for="gender">Gender</label>
<%= Html.RadioButton("gender", 1) %> Male
<%= Html.RadioButton("gender", 2) %> Female
<%= Html.ValidationMessage("gender") %>
</code></pre>
<p>Note that when the user initially sees this input, neither button is selected.
The validation is there to force them to choose and not accept a default.
Therefore, these two radio buttons are bound to a nullable int property in my model declared as:</p>
<pre><code>public int? gender { get; set; }
</code></pre>
<p>So if they do not select a button, and submit the page, the gender property will be null indicating that they did not select. The following validation is called by the controller during the post:</p>
<pre><code>if (!gender.HasValue)
ModelState.AddModelError("gender", "gender required");
</code></pre>
<p>But, if the validation fails (they did not choose), then during the rendering phase, the following exception is thrown by the MVC framework:</p>
<pre><code>System.NullReferenceException was unhandled by user code
Message="Object reference not set to an instance of an object."
</code></pre>
<p>In searching for for a solution to this problem, I noted several had this problem.
I am using ASP.NET MVC 1.0. I found the place in the code where this error is thrown using .NET Reflector.</p>
<p>The question is how to make this work correctly?</p>
<p>EDIT: to add stacktrace:</p>
<pre><code>System.NullReferenceException was unhandled by user code
Message="Object reference not set to an instance of an object."
Source="System.Web.Mvc"
StackTrace:
at System.Web.Mvc.HtmlHelper.GetModelStateValue(String key, Type destinationType)
at System.Web.Mvc.Html.InputExtensions.InputHelper(HtmlHelper htmlHelper, InputType inputType, String name, Object value, Boolean useViewData, Boolean isChecked, Boolean setId, Boolean isExplicitValue, IDictionary`2 htmlAttributes)
at System.Web.Mvc.Html.InputExtensions.RadioButton(HtmlHelper htmlHelper, String name, Object value, Boolean isChecked, IDictionary`2 htmlAttributes)
at System.Web.Mvc.Html.InputExtensions.RadioButton(HtmlHelper htmlHelper, String name, Object value, IDictionary`2 htmlAttributes)
at System.Web.Mvc.Html.InputExtensions.RadioButton(HtmlHelper htmlHelper, String name, Object value)
at ASP.views_vbs_register_aspx.__RenderregisterContent(HtmlTextWriter __w, Control parameterContainer) in c:\Users\David\Documents\BellevueProject\Bellevue\BellevueTeachers\Forms\Views\VBS\Register.aspx:line 42
</code></pre>
http://stackoverflow.com/questions/722655/asp-net-mvc-html-radiobutton-exception/722660#7226605Answer by davcar for ASP.NET MVC Html.RadioButton Exceptiondavcar2009-04-06T18:43:02Z2009-04-07T13:11:41Z<p>I just tried something that makes this work.
The problem does not occur if I do not do the validation step but of course I need the validation.
That gave me a clue for the solution.</p>
<p>The ValidationMessage HtmlHelper method takes a string argument that is the name of the property or model object being validated.
I just changed that name to be "gender2" as follows:</p>
<pre><code><label for="gender">Gender</label>
<%= Html.RadioButton("gender", 1) %> Male
<%= Html.RadioButton("gender", 2) %> Female
<%= Html.ValidationMessage("gender2") %>
</code></pre>
<p>And I changed the validation code to refer to this new name (even though that property does not exist, it still works):</p>
<pre><code>if (!gender.HasValue)
ModelState.AddModelError("gender2", "gender required");
</code></pre>
<p>This works as desired. </p>
<p>I would have thought the other should have worked, but this is a simple workaround and I am documenting that here.</p>
<p>EDIT:
By the way I tried changing the gender property to a string instead of a nullable int, and the same exact problem occurs.</p>
<p>The work around still seems to be in using a different key name for the Validation Message.</p>
http://stackoverflow.com/questions/435729/findlast-on-ienumarable/435749#4357490Answer by davcar for FindLast on IEnumarabledavcar2009-01-12T15:29:08Z2009-01-12T15:29:08Z<p>Use the extension method Last()
which is located in the namespace System.Linq.</p>
http://stackoverflow.com/questions/435261/asp-net-solution-with-class-library-project/435560#4355600Answer by davcar for ASP.NET solution with class library projectdavcar2009-01-12T14:26:57Z2009-01-12T14:26:57Z<p>If you want to have different settings for development vs production, use the Web Deployment Project. Download <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&displaylang=en" rel="nofollow">here</a>. From Microsoft's description:</p>
<blockquote>
<p>Visual Studio 2008 Web Deployment
Projects provide additional
functionality to build and deploy Web
sites and Web applications in Visual
Studio 2008. This add-in provides a
comprehensive UI to manage build
configurations, merging, and using
pre-build and post-build tasks with
MSBuild.</p>
</blockquote>
http://stackoverflow.com/questions/25707/how-do-you-track-your-hours/408256#4082561Answer by davcar for How do you track your hours?davcar2009-01-02T23:05:36Z2009-01-02T23:05:36Z<p>I use <a href="http://www.inertron.com/mobile/inertrak/index.html" rel="nofollow">InerTrack</a> by Inertron Software on my iPhone.
The interface allows me to have different projects.
You tap a project to start the clock, tap again to stop it.
It emails you a csv file to import into excel when you are ready to bill.</p>
http://stackoverflow.com/questions/9157/what-is-the-best-laptop-for-programmers/408226#4082260Answer by davcar for What is the best Laptop for programmers?davcar2009-01-02T22:51:34Z2009-01-02T22:51:34Z<p>I use a MacBook Pro running Vista 32bit, booting directly into a bootcamp partition. Rarely boot into the Mac OSX. Doing dev work with vmware is possible but painful due to minor sluggishness after a few hours of working in that environment. I would not recommend the MBP running Vista/VS2008 under vmware for fulltime work.</p>
<p>The builtin keyboard for the Macbook Pro lacks home, end, pgup and pgdn keys. This makes working without an external keyboard/monitor painful.</p>
<p>Running native Vista and external keyboard and monitor, the MBP works wonderfully as a dev machine. Works with 30" monitors requiring dual-link DVI.</p>
http://stackoverflow.com/questions/289594/is-anyone-using-a-2008-macbook-pro-with-vista/408163#4081631Answer by davcar for Is anyone using a 2008 MacBook Pro with Vista?davcar2009-01-02T22:17:39Z2009-01-02T22:17:39Z<p>I use a MacBook Pro running Vista 32bit, booting directly into a bootcamp partition. Rarely boot into the Mac OSX. Doing dev work with vmware is possible but painful after a few hours. Certainly not for fulltime work.</p>
<p>The builtin keyboard for the Macbook Pro lacks pgup and pgdown keys. This makes working without an external keyboard/monitor painful.</p>
<p>Running native Vista and external keyboard and monitor, the MBP works wonderfully as a dev machine.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/407102#4071027Answer by davcar for What is the best regular expression for validating email addresses?davcar2009-01-02T15:29:28Z2009-01-02T15:29:28Z<p>The email addresses I want to validate are going to be used by an ASP.NET web application using the System.Net.Mail namespace to send emails to a list of people. So, rather than using some very complex regular expression, I just try to create a MailAddress instance from the address. The MailAddress construtor will throw an exception if the address is not formed properly. This way, I know I can at least get the email out of the door. Of course this is server-side validation but at a minimum you need that anyway.</p>
<pre><code>protected void emailValidator_ServerValidate(object source, ServerValidateEventArgs args)
{
try
{
var a = new MailAddress(txtEmail.Text);
}
catch (Exception ex)
{
args.IsValid = false;
emailValidator.ErrorMessage = "email: " + ex.Message;
}
}
</code></pre>
http://stackoverflow.com/questions/722655/asp-net-mvc-html-radiobutton-exception/722782#722782Comment by davcar on ASP.NET MVC Html.RadioButton Exceptiondavcar2009-04-07T16:25:56Z2009-04-07T16:25:56ZAh, I see, interesting to have a hidden default radio button.
Thanks for the idea.http://stackoverflow.com/questions/722655/asp-net-mvc-html-radiobutton-exception/722782#722782Comment by davcar on ASP.NET MVC Html.RadioButton Exceptiondavcar2009-04-07T13:09:04Z2009-04-07T13:09:04ZSame thing happens with a string in the same spot. Even the string is null when no choice is made. And the error does not occur if I don't the validation.