ASP.Net MVC 3 和 Razor 我使用以下代码提交页面
<input name ="button" type="submit" value="AddData" />
我从服务器端读取了控制动作方法中的模态数据。
我读取的数据来自以下代码
@Html.TextAreaFor(m => m.Letter.Letters, new {id = "LetterTextArea"});
提交页面后,我无法清除文本框中的文本。
提交(单击按钮)数据后如何清除文本。
谢谢你,史密斯