悬崖上的指纹

导航

 

2014年4月6日

摘要: 前台代码: 部门编号 '> '> ... 阅读全文
posted @ 2014-04-06 13:55 悬崖上的指纹 阅读(506) 评论(1) 推荐(1)
 
摘要: 前台代码: '> '> 后台代码:public par... 阅读全文
posted @ 2014-04-06 13:01 悬崖上的指纹 阅读(202) 评论(0) 推荐(0)
 
摘要: 前台代码: 后台代码:public partial cl... 阅读全文
posted @ 2014-04-06 12:59 悬崖上的指纹 阅读(181) 评论(0) 推荐(0)
 

2014年3月22日

摘要: 类中的代码 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace LinqTest 7 { 8 class LinqDemo_2 9 { 10 static void Main(string[] args) 11 { 12 StudentDBDataContext db = new StudentDBDataContext("server=.;uid=sa;pwd=123456;database=studentdb... 阅读全文
posted @ 2014-03-22 12:09 悬崖上的指纹 阅读(153) 评论(0) 推荐(0)
 

2014年3月17日

摘要: 类中的代码如下 1 class Program 2 { 3 private static int CountMark(int wirtten, int lab) 4 { 5 return wirtten + lab; 6 } 7 static void Main() 8 { 9 StudentDBDataContext db = new StudentDBDataContext("server=.;uid=sa;pwd=123456;data... 阅读全文
posted @ 2014-03-17 23:48 悬崖上的指纹 阅读(198) 评论(0) 推荐(0)
 

2014年3月15日

摘要: $("body").keydown(function () { if (event.keyCode == 13) { $("#btnLogin").click();//这个代表的是那个按钮获得点击事件 event.preventDefault();//代表阻止默认的时间 } }); 阅读全文
posted @ 2014-03-15 19:23 悬崖上的指纹 阅读(299) 评论(0) 推荐(0)
 

2014年3月11日

摘要: use mastergoif db_id('Student') is not null drop database Studentgocreate database Studentgouse Studentgocreate table UserInfo( userId int not null primary key identity, userName varchar(20) ,)gocreate table Class( userName varchar(12) not null)gocreate table UserMoney( moneyId int not null 阅读全文
posted @ 2014-03-11 10:08 悬崖上的指纹 阅读(374) 评论(0) 推荐(1)