上一页 1 2 3 4 5 6 7 ··· 14 下一页
摘要: @Html.TextBox("ProductNumber", "输入产品编号", new { oninput = "ch()",onfocus="test()"})oninput是改变文本框内容触发 onfocus是获得焦点时触发 阅读全文
posted @ 2015-09-17 16:42 九省巡按 阅读(385) 评论(0) 推荐(0) 编辑
摘要: $(function () { $("#CompanyID").change(function () { var uid = $(this).val(); changediv(uid); }); ... 阅读全文
posted @ 2015-09-16 17:39 九省巡按 阅读(154) 评论(0) 推荐(0) 编辑
摘要: /// /// 根据GUID获取16位的唯一字符串 /// /// /// public static string GuidTo16String() { long i = 1; foreach (byte b in Guid.NewGuid().ToByte... 阅读全文
posted @ 2015-09-16 09:27 九省巡按 阅读(219) 评论(0) 推荐(0) 编辑
摘要: public ActionResult Create(crm_CompetitiveProducts cp) { using (var db = new BaseDbContext()) { PropertyI... 阅读全文
posted @ 2015-09-14 10:54 九省巡按 阅读(353) 评论(0) 推荐(0) 编辑
摘要: @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml";}@model PagedList @using (Ht... 阅读全文
posted @ 2015-09-11 08:30 九省巡按 阅读(261) 评论(0) 推荐(0) 编辑
摘要: var dro = document.getElementById("yid");var index = dro.selectedIndex;dro.options[index].text获取页面选中值 dro.value获取页面点击选中项的文本值var year = $("#yids option... 阅读全文
posted @ 2015-09-10 18:11 九省巡按 阅读(394) 评论(0) 推荐(0) 编辑
摘要: new Date().getFullYear() JS当前年 阅读全文
posted @ 2015-09-10 16:17 九省巡按 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1、ASP.NET MVC 3 如何去除默认验证 这个默认验证是在web.config配置文件中设置的 设置为false就行了, 这个是去掉所有model的默认验证,然后你可以在model中加上自己的验证,这样哪些属性需要验证,哪些不需要 就看你自己了示例代码:View Code... 阅读全文
posted @ 2015-09-03 14:25 九省巡按 阅读(223) 评论(0) 推荐(0) 编辑
摘要: @Html.TextBoxFor(model => Model.MonthPlan, new Dictionary() { { "readonly", "true" } }) 阅读全文
posted @ 2015-09-01 17:41 九省巡按 阅读(135) 评论(0) 推荐(0) 编辑
摘要: System.Web.HttpUtility.UrlDecode(Model.Content,System.Text.Encoding.GetEncoding("GB2312")) 阅读全文
posted @ 2015-08-24 08:58 九省巡按 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 14 下一页