上一页 1 ··· 4 5 6 7 8

单例窗体

摘要: 当前页面代码 点击事件 private void tsbStudent_Click(object sender, EventArgs e) { FrmStudent frm = FrmStudent.Instance; frm.MdiParent = this; frm.Show(); } //需要 阅读全文
posted @ 2013-12-01 16:45 月&&生 阅读(158) 评论(0) 推荐(0) 编辑

Response和Redirect的相关学习

摘要: 关闭输出缓冲Response.BufferOutput = false; 输出缓冲中的数据Response.Flush();清除缓冲中的数据Response.Clear();输出缓冲区中的数据,并结束该页的执行Response.End(); Response.Write("aaaaaaaaaaaaa 阅读全文
posted @ 2013-11-14 16:48 月&&生 阅读(178) 评论(0) 推荐(0) 编辑

.net学习图片防盗链

摘要: 代码实现如下 using System;using System.Collections.Generic;using System.Linq;using System.Web;/// <summary>///全局处理程序///1、新建类,实现IHttpHandler///2、实现相应的功能///3、 阅读全文
posted @ 2013-11-14 16:22 月&&生 阅读(129) 评论(0) 推荐(0) 编辑

.net学习过程中一些经典链接

摘要: http://www.runoob.com/ SQLServer2005 发布订阅 http://wenku.baidu.com/view/1fa0d880e53a580216fcfeba.html序列化应用http://www.yaosansi.com/post/1061.html http:// 阅读全文
posted @ 2013-11-11 10:19 月&&生 阅读(159) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8