我通过以下方式访问数据:
public ActionResult Index()
{
//IEnumerable<ChatLogs> c = from p in db.ChatLogs select p;
//return View(c);
using (var db = new ChatLogContext())
{
var list = db.ChatLogs.ToList();
return View(list);
}
}
我想知道如何将这个数据集合保存在视图中的 TextArea 内?当我们使用网络表单时,我们可以只使用 textBox.Text = textBox.Text + "some data from database";
看法:
@model IEnumerable<Chat.Models.ChatLogs>
@Html.TextArea("chatScreen", new { @Class = "chatScreen" })
谢谢你。