摘要:
今天做access链接aspnet的时候突然发现怎么也是语法错误。百般尝试之后发现。 sql中 插入数据 可以用insert 也可以 insert into。 into 可忽略但是access中不能省略Into 。 不知道为什么 很无奈 阅读全文
摘要:
//TransmitFile实现下载 protected void Button1_Click1(object sender, EventArgs e) { /* 微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite 下载超过400mb的文件时导致Aspnet_wp.exe进程回收而无法成功下载的问题。 代码如下: */ string strFileName = "三部闲置设备管理系统操作手册IEMS.ppt"; Response.ContentType = "application/x-zip-c 阅读全文
摘要:
http://ignatu.co.uk/ViewStateDecoder.aspx在线看内容 阅读全文
摘要:
来个例子,体会更深。========== =============public class Class1{public const string a = 'const'; //不可修改,一直固定死的public readonly string aa = "readonly"; public Class1(string s) //readonly 在实例化的时候可赋值, 在各实例中为只读{aa = s;}}以上部分,如果public readonly string aa = "readonly"; 加上修饰符static ,那么他和con 阅读全文
摘要:
vDrawCurve()方法该法用光滑的曲线把给定的点连接起来,常用形式有public void DrawCurve(Pen pen, Point[] points)其中,Point结构类型的数组中指明各节点,默认弯曲强度为0.5,注意数组中至少要有4个元素。public void DrawCurve(Pen pen, Point[] points, float tension)其中tension指定弯曲强度,该值范围为0.0f ~1.0f,超出此范围会产生异常,当弯曲强度为零时,就是直线演示:private void Form1_Paint(object sender, System.Win 阅读全文
摘要:
数据库的几种查询数值的方式1.select agefrom testwhere age >=10;2.where age<>103.where age<=10;4.where age between 10 and 20;5.where age!=10;6.where age like '1__'; 查询百位数为1的数值复习总结旧知识 阅读全文