摘要: 1.主页面传递参数 url: '@Url.Action("WaterLoad")' + '?year=' + year + '&fanwei=' + fanwei, 2.控制器里接收参数 public ActionResult WaterLoad(int year,string fanwei) { 阅读全文
posted @ 2017-07-18 12:43 芜明-追星 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1. html <form id="form_search" action="@Url.Action("UpLoadFile")" enctype="multipart/form-data" method="post"> <td> 上传文件:<input class="easyui-filebox" 阅读全文
posted @ 2017-07-18 12:42 芜明-追星 阅读(466) 评论(0) 推荐(0) 编辑
摘要: height: height,//"20px" "line-height": height, autosize:true, "text-align": 'center', 阅读全文
posted @ 2017-07-18 12:41 芜明-追星 阅读(1119) 评论(0) 推荐(0) 编辑
摘要: //切换Tab页 $('#tt').tabs({ border:false, onSelect:function(title){ alert(title+' is selected'); } }); 阅读全文
posted @ 2017-07-18 12:41 芜明-追星 阅读(153) 评论(0) 推荐(0) 编辑
摘要: $('#firstfactor').combobox({ url: '@Url.Action("GetMultiAirFactor_Day_New", "UtilManage")' }); 没有定义 valueField和textfield,修改如下 $('#firstfactor').combob 阅读全文
posted @ 2017-07-18 12:40 芜明-追星 阅读(742) 评论(0) 推荐(0) 编辑
摘要: <label><input name="Status1" type="radio" value="first" checked="checked" onclick="firstfactorChange()" />篮球</label> <label><input name="Status1" type 阅读全文
posted @ 2017-07-18 12:39 芜明-追星 阅读(1380) 评论(0) 推荐(0) 编辑
摘要: onClickRow: function (rowIndex, rowData) { dgonClickRow(rowData.oldCityCode,rowData.CITY) } //数据表格单击事件 function dgonClickRow(citycode, cityname) { var 阅读全文
posted @ 2017-07-18 12:38 芜明-追星 阅读(1556) 评论(0) 推荐(0) 编辑
摘要: 1、C#里的SubString String.SubString(int index,int length) index:开始位置,从0开始 length:你要取的子字符串的长度 2、C#语言之“string格式的日期时间字符串转为DateTime类型”的方法 方法一:Convert.ToDateT 阅读全文
posted @ 2017-07-18 12:37 芜明-追星 阅读(20219) 评论(0) 推荐(1) 编辑