上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 46 下一页
  2014年7月21日
摘要: using System;using System.Configuration;using System.Data;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlContr... 阅读全文
posted @ 2014-07-21 09:02 GC2013 阅读(672) 评论(1) 推荐(0) 编辑
  2014年7月20日
摘要: C# 使用xsd文件验证XML 格式是否正确核心示例代码:C#代码//创建xmlDocumentXmlDocumentdoc=newXmlDocument();//创建声明段如doc.AppendChild(doc.CreateXmlDeclaration("1.0","utf-8",null));... 阅读全文
posted @ 2014-07-20 22:57 GC2013 阅读(1440) 评论(1) 推荐(0) 编辑
  2014年7月18日
摘要: 后台代码:C#代码protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){WeatherWSws=newWeatherWS();IListprovinceDataSource=newList();DataSetproDs=ws.... 阅读全文
posted @ 2014-07-18 17:26 GC2013 阅读(546) 评论(0) 推荐(0) 编辑
摘要: c#的socket通信应用.文件较多.附件为工程. core AbstractBytesWorker.cs 字节工作器(基类),用于用于同一不同功能的字节工作器 BinaryHand.cs 2进制处理器. ThDispose.cs 处理回收相关 crcentity ThPersonInfo.cs m... 阅读全文
posted @ 2014-07-18 14:00 GC2013 阅读(1162) 评论(0) 推荐(0) 编辑
摘要: 这里采用在visual studio 2010中通过MySql.Data.dll、MySql.Web.dll来连接mysql数据库,之后便进行数据的插入和查询。Program.cs文件内容如下:C#代码usingSystem;usingSystem.Collections.Generic;using... 阅读全文
posted @ 2014-07-18 11:12 GC2013 阅读(6364) 评论(0) 推荐(1) 编辑
  2014年7月17日
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2014-07-17 17:03 GC2013 阅读(1916) 评论(1) 推荐(0) 编辑
摘要: C#做外挂的常用API,本人用了很久,基本没发现问题usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Runtime.InteropServices;//这个肯定要的namespaceWindowsApp... 阅读全文
posted @ 2014-07-17 15:13 GC2013 阅读(2226) 评论(0) 推荐(1) 编辑
摘要: C#中怎么计算两时间相差多少。计算2个时间之间的差,可以计算到时分秒!label1.Text = "2004-1-1 15:36:05";label2.Text = "2004-3-1 20:16:35";DateTime d1 =new DateTime(2004,1,1,15,36,05);Da... 阅读全文
posted @ 2014-07-17 10:38 GC2013 阅读(1240) 评论(0) 推荐(0) 编辑
摘要: 图片保存到数据库的方法: public void imgToDB(string sql) { //参数sql中要求保存的imge变量名称为@images //调用方法如:imgToDB("update UserPhoto setPhoto=@imageswhere UserNo='" + temp ... 阅读全文
posted @ 2014-07-17 08:39 GC2013 阅读(4151) 评论(0) 推荐(0) 编辑
  2014年7月16日
摘要: 1、方法一 (不可逆加密)srxljl publicstringEncryptPassword(stringPasswordString,stringPasswordFormat ) { stringencryptPassword=null; if(PasswordFormat=... 阅读全文
posted @ 2014-07-16 13:43 GC2013 阅读(1350) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 46 下一页