摘要: 第一种:(跳转到b.html) 第二种:(返回上一页面) 第三种: 第四种: 第五种: 阅读全文
posted @ 2018-01-12 10:34 你的斗志并没有失去 阅读(100) 评论(0) 推荐(0) 编辑
摘要: JSON 阅读全文
posted @ 2018-01-10 10:05 你的斗志并没有失去 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 面向对象编程 阅读全文
posted @ 2018-01-09 15:02 你的斗志并没有失去 阅读(118) 评论(0) 推荐(0) 编辑
摘要: DOM文档对象 阅读全文
posted @ 2018-01-08 08:47 你的斗志并没有失去 阅读(162) 评论(0) 推荐(0) 编辑
摘要: JS响应事件练习 用户名: 用户名: 阅读全文
posted @ 2018-01-05 10:50 你的斗志并没有失去 阅读(236) 评论(0) 推荐(0) 编辑
摘要: private void btnlogin_Click(object sender, EventArgs e) { //登录按钮事件 try { //判断最后登录时间 是不是今天 string s5 = "select ... 阅读全文
posted @ 2017-12-27 17:26 你的斗志并没有失去 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 新建一个winfrom窗体应用程序,为程序添加配置文件App.config,然后在配置文件中添加数据库连接字符串 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Configuration; using System.D... 阅读全文
posted @ 2017-12-12 10:16 你的斗志并没有失去 阅读(1865) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.... 阅读全文
posted @ 2017-12-12 10:03 你的斗志并没有失去 阅读(164) 评论(0) 推荐(0) 编辑
摘要: //获取用户输入的用户名和密码 string userName=txtuserName.Text.Trim(); string pwd=txtPwd.Text.Trim(); //设置数据库连接 string strCon = "Server=PC-20161029WDCV\\SQL2014;Database=StudentDB;Trusted_Connection=True"; ... 阅读全文
posted @ 2017-12-12 09:45 你的斗志并没有失去 阅读(120) 评论(0) 推荐(0) 编辑
摘要: //定义一个需要访问的数据库的信息 string strCon = "Server=PC-20161029WDCV\\SQL2014;Database=StudentDB;Trusted_Connection=True"; SqlConnection con = new SqlConnection(strCon); con.open(); //把sql语句换成删除和更新,即可实现删除和更新操... 阅读全文
posted @ 2017-12-12 09:22 你的斗志并没有失去 阅读(136) 评论(0) 推荐(0) 编辑