Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EditorFor(..) throws an exception when my model is null in my ASP.NET MVC application

I've got a really simple ASP.NET MVC View which has a simple string as the model.

eg.

@model string

When I do the following, the view throws an exception, if the model value is null (which occurs when the user first lands on this view/page/resource).

Value cannot be null or empty.
Parameter name: name

Description: An unhandled exception occurred during the execution of the 
             current web request. Please review the stack trace for more 
             information about the error and where it originated in the code. 

Exception Details: System.ArgumentException: Value cannot be null or empty.
Parameter name: name

<td>@Html.EditorFor(model => model)</td>

How can I create an input box using EditorFor(..) when the string-model value is null?

like image 780
Pure.Krome Avatar asked Sep 02 '11 06:09

Pure.Krome


1 Answers

It appears the problem is that it cannot determine what it should use as the name of the field that you are creating. I would recommend passing in a ViewModel with a single string property in it instead of just passing a string directly. This will give you an opportunity to use data annotations to provide additional data about the field if necessary as well.

like image 175
Timothy Strimple Avatar answered Nov 15 '22 08:11

Timothy Strimple