上一页 1 2 3 4 5 6 7 ··· 40 下一页
摘要: -- 查看查询数据显示SELECT * FROM student; -- 显示一部分信息的查询SELECT sname 姓名,sscore 成绩,saddress 家庭住址 FROM student; -- 查询的基本条件 > < <= >= = != <>SELECT * FROM student 阅读全文
posted @ 2018-03-23 15:21 芜明-追星 阅读(144) 评论(0) 推荐(0) 编辑
摘要: -- 建立表CREATE TABLE 表名( )ENGINE=存储引擎(MYISAM INNODB) AUTO_INCREMENT=100 DEFAULT CHARSET=utf8; CREATE TABLE t1(t INT);CREATE TABLE t2(t INT);CREATE TABLE 阅读全文
posted @ 2018-03-23 15:20 芜明-追星 阅读(119) 评论(0) 推荐(0) 编辑
摘要: USE db; -- 建立学生信息表CREATE TABLE student( sno INT UNSIGNED NOT NULL AUTO_INCREMENT, sname VARCHAR(20) NOT NULL, sage TINYINT UNSIGNED NOT NULL, sbirthda 阅读全文
posted @ 2018-03-23 15:20 芜明-追星 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1.取组件值 传递form data,load发送 请求加载数据 <script type="text/JavaScript"> mini.parse(); // get grid var grid = mini.get("grid"); var form = new mini.Form("#for 阅读全文
posted @ 2017-07-19 11:00 芜明-追星 阅读(2052) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑
上一页 1 2 3 4 5 6 7 ··· 40 下一页