0

大家好,我刚开始工作MVC,这是我在cshtml页面中写的

@if (Request.QueryString["TechID"] != null)
{
int TechID = Convert.ToInt16(Request.QueryString["TechID"].ToString());
forumAPP.newForumDBEntities db = new forumAPP.newForumDBEntities();
var topic = from p in db.tblTechnologies where p.TechID == TechID select p.TechName;
string strText = "A forum where you can post questions regarding " + topic.FirstOrDefault().ToString(); ;
@Html.Label("Name", strText)
}

我只是想知道编写一些代码(例如处理会话)来显示一些示例内容(例如Username或所需的文本)是否是一种好习惯,而不是写在model

4

0 回答 0