上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 一:登录页面.html制作登录页面html后缀,是客户端控件,不能直接和后台交互,而服务端aspx可以和后台交互,所以要通过js获得内容,通过aspx和后台交互前台: 用户名: 密码: 在js中$(function () { $("#btnLogin").click(function () { ... 阅读全文
posted @ 2015-12-11 21:17 以深 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 分页,cookies,session用法一:获取分页 public partial class RNewsM : System.Web.UI.Page { private int PageCount = 0; //总共几页 pri... 阅读全文
posted @ 2015-12-10 20:55 以深 阅读(209) 评论(0) 推荐(0) 编辑
摘要: DataReader和DateSet区别:1. DataReader是一行一行的读,且只能向前读。DateSet是一次性读取出来放到内存中,所以,DataReader读取速度更快,占用内存更低。2.DataReader需要一直和数据库保持连接,DataSet读取完后即和数据库断开。3. DataSe... 阅读全文
posted @ 2015-12-09 21:41 以深 阅读(165) 评论(0) 推荐(0) 编辑
摘要: CRUD:createreadupdatedelete七.数据绑定数据列的转换在gridview中添加在cs中 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowTy... 阅读全文
posted @ 2015-11-17 17:51 以深 阅读(150) 评论(0) 推荐(0) 编辑
摘要: ADO.NET一.什么是ado.net ADO.NET是一组允许.NET开发人员使用标准的,结构化的,甚至无连接的方式与数据交互的技术。 它所属类库是:System.Data.dll二.连接到数据库 2.1 web.config里面配... 阅读全文
posted @ 2015-11-05 21:11 以深 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 五.继承5.1 父类又称(基类,超类)是被继承的类,子类又称派生类。5.2 A:B,A就叫子类,B叫父类,B里面所有的成员(字段,方法)都会被A继承。B里面的私有成员,A也是继承下来了的,只是没有访问权限。5.3A:B B:C ===》A:C5.4 任何类型的基类是Object类5.5使用seale... 阅读全文
posted @ 2015-11-05 20:26 以深 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 三.字符串拼凑stringbuilder stringbuilder sb= new stringbuilder(); sb.append("aaa"); sb.append("bbbb"); console.writeline(sb.tostring());四.遍历 string [] ... 阅读全文
posted @ 2015-11-01 19:05 以深 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 二.值类型和引用类型 2.1 值类型:所有的数值类型都是值类型(short int long float double ...),枚举,布尔类型,结构 2.2 引用类型:对象 ,字符串,object,数组 2.2.1 引用类型的值是储存在堆里面的,栈里面储存的只是它的引用地址. ... 阅读全文
posted @ 2015-10-31 17:34 以深 阅读(174) 评论(0) 推荐(0) 编辑
摘要: C#(一)一.C#的数值类型 byte----字节型 short---短整型 int------整型 long----长整型 char----字符型 float----单精度型 double--双精度型 bool----布尔型 阅读全文
posted @ 2015-10-24 21:21 以深 阅读(112) 评论(0) 推荐(0) 编辑
摘要: SQL SERVER(二)三.插入,更新,删除,添加 3.1insert插入 insert intostudent(sno,sname,sage) values('1001'张三','28') insert intostudent values('1001'张三','28','女')3.2upda... 阅读全文
posted @ 2015-10-24 14:53 以深 阅读(228) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页
TOP