02 2009 档案

摘要:Change picture Change name View your account Link other accounts sign out Our latest improvements ... 阅读全文
posted @ 2009-02-27 20:46 zxlin25 阅读(120) 评论(0) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSystem.Collections.Ge... 阅读全文
posted @ 2009-02-27 15:24 zxlin25 阅读(2394) 评论(0) 推荐(0)
摘要:var fso, tf; fso = new ActiveXObject("Scripting.FileSystemObject"); // 创建新文件 tf = fso.CreateTextFile("c:""testfile.txt", true); // 填写数据,并增加... 阅读全文
posted @ 2009-02-27 13:27 zxlin25 阅读(747) 评论(0) 推荐(0)
摘要:Eval与DataBinder.Eval的区别 2009-02-20 15:35 DataBinder.Eval的基本格式 DataBinder.Eval(Container.DataItem,"XXX","{0}") 或者 还有一种据说微软说效率很高的方... 阅读全文
posted @ 2009-02-27 11:52 zxlin25 阅读(1578) 评论(1) 推荐(1)
摘要:string 集中常用的方法: substring public String substring(int beginIndex)返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。 例如: "unhappy".substring(2) return... 阅读全文
posted @ 2009-02-27 11:01 zxlin25 阅读(1639) 评论(0) 推荐(1)
摘要:1:string 类型表示零或更多 Unicode 字符组成的序列。string 是 .NET Framework 中 String 的别名。 尽管 string 是引用类型,但定义相等运算符(== 和 !=)是为了比较 string 对象(而不是引用)的值。这使得对字符串相等性的测试更为直观。例如... 阅读全文
posted @ 2009-02-27 10:18 zxlin25 阅读(285) 评论(0) 推荐(0)
摘要:2008年08月18日 星期一 16:05 1、ExecuteReader();返回一个SqlDataReader对象或OleDbDataReader对象,这个看你的程序的需要去 做。可以通过这个对象来检查查询结果,它提供了“游水”式的执行方式,即从结果中读取... 阅读全文
posted @ 2009-02-26 20:11 zxlin25 阅读(320) 评论(0) 推荐(0)
摘要:SqlDataReader 类 提供一种从 SQL Server 数据库读取行的只进流的方式。无法继承此类。 命名空间:System.Data.SqlClient 程序集:System.Data(在 system.data.dll 中) 语法 ... 阅读全文
posted @ 2009-02-26 19:31 zxlin25 阅读(430) 评论(0) 推荐(0)
摘要:using System.Data.Sqlclient; 1:sqlconnection类: 2:sqlcommand 类: 3:SqlDataAdapter类: 4:SqlDataAdapter类: 阅读全文
posted @ 2009-02-26 19:30 zxlin25 阅读(577) 评论(0) 推荐(0)
摘要:1:DataBinder.Eval(Container.DataItem,"username") 和 Eval绑定的区别 网上看到的: 如果只是显示值就可以了. 如果是要修改值就可以了. 2:获取IP代码: string userip = Request.UserHostAddress.ToStr... 阅读全文
posted @ 2009-02-26 19:04 zxlin25 阅读(134) 评论(0) 推荐(0)
摘要:SqlCommand.ExecuteReader 方法 将 CommandText 发送到 Connection 并生成一个 SqlDataReader。 重载列表 ... 阅读全文
posted @ 2009-02-26 18:56 zxlin25 阅读(6063) 评论(0) 推荐(0)
摘要:SqlCommand.ExecuteScalar 方法 行查询,并返回查询所返回的结果集中第一行的第一列。忽略其他列或行。 命名空间:System.Data.SqlClient 程序集:System.Data(在 system.data.dll 中) 语法 ... 阅读全文
posted @ 2009-02-26 18:51 zxlin25 阅读(864) 评论(0) 推荐(0)
摘要:表示用于填充 DataSet 和更新 SQL Server 数据库的一组数据命令和一个数据库连接。无法继承此类。 SqlDataAdapter 是 DataSet 和 SQL Server 之间的桥接器,用于检索和保存数据。SqlDataAdapter 通过对数据源使用适当的 Transact-SQ... 阅读全文
posted @ 2009-02-26 18:44 zxlin25 阅读(484) 评论(2) 推荐(0)
摘要:SqlCommand.ExecuteNonQuery 方法 对连接执行 Transact-SQL 语句并返回受影响的行数,为int数据类型 命名空间:System.Data.SqlClient 程序集:System.Data(在 system.data.dll 中) ... 阅读全文
posted @ 2009-02-26 16:27 zxlin25 阅读(684) 评论(1) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->publicstaticstringGetleftString(stringstr... 阅读全文
posted @ 2009-02-26 11:50 zxlin25 阅读(141) 评论(0) 推荐(0)
摘要:Feeling regret about having bought something is a very unpleasant sort of unhappiness. Even with my under-buying ways, I sometimes come home with something I didn't really need to buy. Stores use extr... 阅读全文
posted @ 2009-02-26 07:31 zxlin25 阅读(238) 评论(0) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->1usingSystem; 2usingSystem.Collections.Generic; 3usingSystem.Text; 4 5namespace... 阅读全文
posted @ 2009-02-23 21:44 zxlin25 阅读(124) 评论(0) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingsystem; 2usingsystem.collections; ... 阅读全文
posted @ 2009-02-23 16:35 zxlin25 阅读(156) 评论(0) 推荐(0)
摘要:struct_enum Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSystem.C... 阅读全文
posted @ 2009-02-21 13:56 zxlin25 阅读(156) 评论(0) 推荐(0)
摘要:instance:实例 declare:声明 goblal:全局 function:功能,函数 complex:复杂的 ;summary:摘要,概要 description:描述 query:查询 uncomment:取消注释 expand:展开 modify:修... 阅读全文
posted @ 2009-02-21 12:54 zxlin25 阅读(304) 评论(2) 推荐(0)
摘要:Free English Lessons Study English Online for Free If you are looking for free English lessons you've come to the right p... 阅读全文
posted @ 2009-02-20 15:03 zxlin25 阅读(246) 评论(0) 推荐(0)
摘要:How To Learn English! Here are some tips which may help you to master the English Language! Speak without Fear The biggest problem most people face i... 阅读全文
posted @ 2009-02-20 14:52 zxlin25 阅读(367) 评论(0) 推荐(0)
摘要:When someone accepts an invitation to join your network (A group of people someone communicates and shares with on Windows Live. Someone's networ... 阅读全文
posted @ 2009-02-20 12:57 zxlin25 阅读(486) 评论(0) 推荐(0)
摘要:(字幕)佛典有云:旗未动,风也未吹,是人的心自己在动。 It'swrittenintheBuddhistCanon.Theflagsarestill,nowindblows......It'stheheartofmanthat'sintumult... 阅读全文
posted @ 2009-02-20 12:42 zxlin25 阅读(695) 评论(0) 推荐(0)
摘要:By Anthony Balderrama, CareerBuilder.com writer Find Jobs Keywo... 阅读全文
posted @ 2009-02-20 08:21 zxlin25 阅读(258) 评论(0) 推荐(0)
摘要:Code Foreach循环: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSys... 阅读全文
posted @ 2009-02-18 22:00 zxlin25 阅读(386) 评论(0) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSystem.Collection... 阅读全文
posted @ 2009-02-18 21:19 zxlin25 阅读(190) 评论(0) 推荐(0)
摘要:HTML 标签 定义和用法 noscript 元素用来定义在脚本未被执行时的替代内容(文本)。 此标签可被用于可识别 Your browser does not support JavaScript!...... 阅读全文
posted @ 2009-02-17 09:05 zxlin25 阅读(195) 评论(0) 推荐(0)
摘要:习惯了表格布局 用div 处处不习惯。 比如我用使用DIV代替表格布局(如下): , 使用DIV no-repeat:不重复 阅读全文
posted @ 2009-02-16 20:51 zxlin25 阅读(138) 评论(0) 推荐(0)
摘要:Welcome to the MySpaceIM Chat Room! Send a message now to begin chatting with other members. Do not post offensive, violent or pornographic ma... 阅读全文
posted @ 2009-02-16 08:42 zxlin25 阅读(156) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2009-02-16 08:21 zxlin25 阅读(126) 评论(1) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->1usingSystem; 2usingSystem.Collections.Generic; 3usingSystem.Text; 4 5namespac... 阅读全文
posted @ 2009-02-15 20:35 zxlin25 阅读(113) 评论(0) 推荐(0)
摘要:Simple String Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSystem.Coll... 阅读全文
posted @ 2009-02-15 19:22 zxlin25 阅读(113) 评论(0) 推荐(0)
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem; 2usingSystem.Collections.G... 阅读全文
posted @ 2009-02-15 19:02 zxlin25 阅读(196) 评论(1) 推荐(0)
摘要:beyond go beyond go beyond the game you and I we have met before to the magic of the moment in cyber space driven by a passion to win playing heart to heart face to face the challenge of the liv... 阅读全文
posted @ 2009-02-15 13:39 zxlin25 阅读(179) 评论(0) 推荐(0)
摘要:‏ From: MySpace Birthday Reminder (noreply@message.myspace.com) You may not know this sender.Mark as saf... 阅读全文
posted @ 2009-02-15 12:50 zxlin25 阅读(168) 评论(0) 推荐(0)
摘要:The people in your life are important. We've added a lot of new features to make it easier for you to connect instantly and keep in touch with those y... 阅读全文
posted @ 2009-02-14 11:17 zxlin25 阅读(211) 评论(1) 推荐(0)
摘要:The page cannot be foundThe page you are looking for might have been removed, had its name changed, or is temporarily unavailable. Please try the foll... 阅读全文
posted @ 2009-02-14 10:48 zxlin25 阅读(598) 评论(1) 推荐(0)
摘要:1.在C#中,一些都是对象。你要用一个对象,就必须用new来实例化类(static类例外)。当你用new命令时,系统就会自动调用该类的构造函数,做些初始化之类的工作。至于方法,你只能通过手工方式用"object.method()"的方式调用。 2.类中可以没有构造函数,因为没有时,系统会自己帮... 阅读全文
posted @ 2009-02-13 16:49 zxlin25 阅读(7403) 评论(1) 推荐(1)
摘要:Hello, Thank you for your interest in Zoho Invoice. I am Siva and I will be happy to assist you with our service. I will neither disturb you ... 阅读全文
posted @ 2009-02-12 16:44 zxlin25 阅读(280) 评论(2) 推荐(0)
摘要:今天开始学习C# 学习教程:Visual C#2008 开发技术实例详解 阅读全文
posted @ 2009-02-12 16:29 zxlin25 阅读(114) 评论(0) 推荐(0)
摘要:This program cannot display the webpage Most likely causes: You are not connected to the Internet. The website is encountering problems. Ther... 阅读全文
posted @ 2009-02-12 08:21 zxlin25 阅读(523) 评论(1) 推荐(0)
摘要:You may not know it, but you probably have an OpenID. If you have a Yahoo account, you have an OpenID. If you have a Windows Live account, you will so... 阅读全文
posted @ 2009-02-11 21:16 zxlin25 阅读(259) 评论(0) 推荐(0)
摘要:一般黑客挂马的代码都是 这样的 其实还有很多挂马代码 下面全面介绍下 一:框架挂马 二:js文件挂马 首先将以下代码 document.write(""); 保存为xxx.js, 则JS挂马代码为 ... 阅读全文
posted @ 2009-02-11 16:05 zxlin25 阅读(279) 评论(0) 推荐(0)
摘要:The following table gives the character entity reference, decimal character reference, and hexadecimal character reference for markup-significant and ... 阅读全文
posted @ 2009-02-11 08:39 zxlin25 阅读(158) 评论(0) 推荐(0)
摘要:方法一: protected void btnTest_Click(object sender, EventArgs e) { string str = txtReg.Text.Trim(); if (Regex.IsMatch(str, "^[0-9]*[1-9][0-9]*$")) {... 阅读全文
posted @ 2009-02-10 10:57 zxlin25 阅读(141) 评论(1) 推荐(0)
摘要:错误消息 “method”:并非所有的代码路径都返回值 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSyste... 阅读全文
posted @ 2009-02-07 15:11 zxlin25 阅读(696) 评论(0) 推荐(0)
摘要:CLSID List (Windows Class Identifiers) Certain special folders within the operating system are identified by unique strings. Some of these st... 阅读全文
posted @ 2009-02-06 14:54 zxlin25 阅读(431) 评论(0) 推荐(0)
摘要:protected void Page_Load(object sender, EventArgs e) { Page.Title = DataClass.GetApplication("webname") + " - " + "系统信息"; string strID=Request.Quer... 阅读全文
posted @ 2009-02-05 15:28 zxlin25 阅读(452) 评论(0) 推荐(0)