上一页 1 2 3 4 5 6 ··· 22 下一页
摘要: 第一步:我们要把gridview里面的属性中ShowFooter="True",就是把gridview的页脚显示出来。 第二步:在双击属性面板中的事件,让他自动生成一个GridView1_RowDataBound的事件。 第三步:定义变量 private decimal sum=0; 第四步:在protected void GridView1_RowDataBound(objec... 阅读全文
posted @ 2008-10-09 14:44 HappyQQ 阅读(647) 评论(0) 推荐(0) 编辑
摘要: C#多线程学习(一) 多线程的相关概念 什么是进程?当一个程序开始运行时,它就是一个进程,进程包括运行中的程序和程序所使用到的内存和系统资源。而一个进程又是由多个线程所组成的。什么是线程?线程是程序中的一个执行流,每个线程都有自己的专有寄存器(栈指针、程序计数器等),但代码区是共享的,即不同的线程可以执行同样的函数。什么是多线程?多线程是指程序中包含多个执行流,即在一个程序中可以同时运行多个不同... 阅读全文
posted @ 2008-08-16 13:38 HappyQQ 阅读(529) 评论(1) 推荐(0) 编辑
摘要: C#多线程之Thread .NET将关于多线程的功能定义在System.Threading名称空间中,因此,如果您的程序要使用多线程,必须引用此命名空间(using System.Threading)。我们知道,在.NET中使用多线程有两种方式:1,使用Thread创建一个新的线程。2,使用ThreadPool。 首先我们先说说和Thread有关的几个概念。1,创建线程和启动线程,如果代码可实现 ... 阅读全文
posted @ 2008-08-16 13:34 HappyQQ 阅读(2886) 评论(0) 推荐(0) 编辑
摘要: ACCESS数据库C#操作类(SQLHELPER修改版) 这个是针对ACCESS数据库操作的类,同样也是从SQLHELPER提取而来,分页程序的调用可以参考MSSQL那个类的调用,差不多的,只是提取所有记录的数量的时候有多一个参数,这个需要注意一下! c# 代码 using System; using System.Text; using System.Collections; ... 阅读全文
posted @ 2008-08-15 22:40 HappyQQ 阅读(1744) 评论(0) 推荐(0) 编辑
摘要: c#.net连接access操作类 1、配置web.config文件:配置数据库连接参数 2程序设计开始: 1、按要求建立Access数据库及数据表 2、编写数据库访问、操作的公用类,此类可以复用到以后开发的任何系统中 (1)、新建一个C# 类库项目, 命名为“Com.LXJ”,设置项目属性:程序集名称、默认命名空间均为“Com.LXJ” (2)、在此项目目录下创建目录Databas... 阅读全文
posted @ 2008-08-15 22:33 HappyQQ 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: 办公 OpenOffice - office suitePC Suite 602 - office suiteAbiWord - text editorAtlantis Nova - text editorMicrosoft PowerPoint Viewer - power point files viewerAdobe Reader - pdf readerFoxit PDF Reader... 阅读全文
posted @ 2008-08-02 20:29 HappyQQ 阅读(545) 评论(0) 推荐(0) 编辑
摘要: SQLIer - SQLIer takes a vulnerable URL and attempts to determine all the necessary information to exploit the SQL Injection vulnerability by itself, requiring no user interaction at all. Get SQLIer.Co... 阅读全文
posted @ 2008-08-02 19:59 HappyQQ 阅读(837) 评论(0) 推荐(0) 编辑
摘要: [ ] Blind MySQL injection and database stressing http://www.reversing.org/node/view/13 [ ] Using SQLBrute to brute force data from a blind SQL injection point http://www.justinclarke.... 阅读全文
posted @ 2008-07-31 22:41 HappyQQ 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 来源:http://hi.baidu.com/myvbscript/十大再生系统 www.darknet.org.uk/2006/03/10-best-security-live-cd-distros-pen-test-forensics-recovery百大网安工具 www.sectools.org | www.darknet.org.uk/hack-tools-exploits-feeds最新... 阅读全文
posted @ 2008-07-31 22:34 HappyQQ 阅读(3474) 评论(0) 推荐(0) 编辑
摘要: LDAP injection From OWASP Jump to: navigation, search This is an Attack. To view all attacks, please see the Attack Category page. Last revision: 7/2/2008 Description LDAP Injection is an attack use... 阅读全文
posted @ 2008-07-20 00:05 HappyQQ 阅读(1547) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 22 下一页