带有新行的TextAreaFor会导致内部异常

时间:2012-03-16 15:59:37

标签: c# asp.net-mvc razor

这可能很简单,但是......

我有一个包含文字区域的视图:@Html.TextAreaFor(model => model.ContactInfo)

没有任何新行或使用@Html.EditorFor,一切顺利。当我输入地址时,例如......

 John Doe
 1 Right Way
 New York, NY

......发生以下内部异常:

"String or binary data would be truncated.\r\nThe statement has been terminated."

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

柯特撞到了头上的钉子。我在那个领域只有一个varchar(10)。傻我。

获得的经验教训:“在得出结论之前,先了解具体领域的具体内容。”