在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、JsonResult 1 using System.Web.Mvc;
2、Html Helper @Html.TextBox("UserName") <—> <input id="UserName" type="text" value="" name="UserName"> @Html.TextBox("UserName", null, new { id = "txtUserName" }) <—> <input id="txtUserName" type="text" value="" name="UserName"> @Html.TextBox("UserName", null, new { id = "txtUserName", @class = "highlight" }) <—> <input id="txtUserName" class="highlight" type="text" value="" name="UserName">
@Html.ActionLink("删除", "DeletePost", new { id = item.ID }, new { onclick = "return confirm('你确定要删除该随笔?')" }) |
请发表评论