上一页 1 2 3 4 5 6 ··· 8 下一页
  2016年7月21日
摘要: 内置对象:1、Response - 响应请求对象 Response.Redirect("Default2.aspx"); //重定向 Response.Write("<script>window.open('Default2.aspx');</script>"); 2、Request - 接收请求对 阅读全文
posted @ 2016-07-21 08:43 爱意红沉 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 数据库的链接: Nation数据库 一、程序制作的步骤:1、想想是要实现什么功能,把界面搭出来2、想想在哪里写代码3、补齐一些小问题如果这3步也解决不了问题,那么问题出在你就不知道这个程序是要干什么二、用户体验问题:让用户简便的操作 - 站在使用者的角度来考虑程序的设计去网上找一些类似的程序来看看他 阅读全文
posted @ 2016-07-21 08:23 爱意红沉 阅读(579) 评论(0) 推荐(0) 编辑
  2016年7月18日
摘要: Label - 文本显示控件,虽然说属性中可以设置此控件的诸多样式,但是不建议大家使用,而是使用CSS来设置相应的样式 Literal - 用来显示文本,text中的内容会原封不动的打印到浏览器中,不会生成其它的代码 TextBox - TextMode,ReadOnly,MaxLength,Aut 阅读全文
posted @ 2016-07-18 16:11 爱意红沉 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 文本类:<input type="text"/><input type="password"/><input type="hidden"/><textarea /> 按钮类:<input type="submit" /><input type="button" /><input type="rese 阅读全文
posted @ 2016-07-18 16:10 爱意红沉 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 简介:ASP.NET - 制作网站应用程序的技术 WebForm MVC 什么东西? winform 界面 - 后台 - 数据库 共同组合出来的程序;ASP.NET 界面(HTML+CSS+JS) - 后台 - 数据库 运行机制:winform - 程序是安装在用户的电脑上,程序是运行在用户电脑上的 阅读全文
posted @ 2016-07-18 16:07 爱意红沉 阅读(173) 评论(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.Windows.Forms; namespace 用户控件... 阅读全文
posted @ 2016-07-18 16:05 爱意红沉 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 连接数据库 表单设置 阅读全文
posted @ 2016-07-18 16:02 爱意红沉 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 一个重要属性Interval,这个值设定每个多长时间执行一次动作,单位是毫秒,还有一个重要事件是Timer,双击Timer控件即可自动产生这个事件的框架,在这个框架里面写入每隔Interval毫秒就要执行的代码动作。例如:1.放一个Timer控件在窗体上2.设置Timer控件的Interval属性为 阅读全文
posted @ 2016-07-18 15:56 爱意红沉 阅读(216) 评论(0) 推荐(0) 编辑
  2016年7月4日
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Text; using System.Wind... 阅读全文
posted @ 2016-07-04 16:37 爱意红沉 阅读(163) 评论(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.Windows.Forms; namespace 关闭主程... 阅读全文
posted @ 2016-07-04 16:03 爱意红沉 阅读(250) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页