一個文本框,我有一個簡單的用戶將完成提交一個「通訊社」。當在創建視圖的形式加載我想筆者輸入自動與登錄用戶名在視圖中的文本框中填入。任何人都可以評論我做錯了什麼?如何自動填充在MVC
我的模型:
public class NewsWire
{
public int ID { get; set; }
public int VendorID { get; set; }
public DateTime Date { get; set; }
public string Subject { get; set; }
public string NewsItem { get; set; }
//public string Author { get; set; }
public string Author
{
get
{
return System.Web.HttpContext.Current.User.Identity.Name;
}
}
}
在形式作者部分我有這樣的:
<div class="editor-label">
@Html.LabelFor(model => model.Author)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Author)
@Html.ValidationMessageFor(model => model.Author)
</div>
我嘗試了好幾種變化,但仍然沒有得到它的權利。任何幫助,將不勝感激。
啊......我想它通過走錯了路!謝謝您的幫助! – MissioDei