ASP.NET MVC 4笔记(二)
- 有Timestamp修饰的表在修改已有的记录是一定要将该字段复制,也就是说一定要在Edit网页里面添加一行: @Html.HiddenFor(model => model.RowVersion)
- WebSecurity.CreateAccount必须在Userprofile里面先创建账户。 System.Diagnostics.Debug.WriteLine("OnAction:" + controller + "/" + action);
- 转换string数组到int数组
int[] HostsList = Array.ConvertAll
(Request["HostsId"].Split(','), u => int.Parse(u));