2004年9月6日

摘要: //获得汉字的区位码 byte[] array = new byte[2]; array = System.Text.Encoding.Default.GetBytes("啊"); int i1 = (short)(array[0] - ''\0''); int i2 = (short)(array[1] - ''\0''); //unicode解码方式下的汉字码 ar... 阅读全文
posted @ 2004-09-06 17:08 祥子哥哥 阅读(624) 评论(0) 推荐(0) 编辑

2004年9月3日

摘要: using System;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Text;namespace ucasp{ public class ucpage : Page { protected Label Label1; ... 阅读全文
posted @ 2004-09-03 15:54 祥子哥哥 阅读(841) 评论(0) 推荐(0) 编辑

2004年9月2日

摘要: style type="text/css"> 阅读全文
posted @ 2004-09-02 14:13 祥子哥哥 阅读(1208) 评论(3) 推荐(0) 编辑

2004年9月1日

摘要: using System;using System.Data;using System.Configuration;using System.Data.SqlClient;using System.Web.UI;using System.Web.UI.WebControls;namespace Map{ public class Creat : Page { pro... 阅读全文
posted @ 2004-09-01 17:00 祥子哥哥 阅读(939) 评论(0) 推荐(0) 编辑
 
摘要: using System;using System.Data;using System.Data.OleDb;namespace Mytest{public class Conn:Page{int pageSize,currentPage;string connStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapP... 阅读全文
posted @ 2004-09-01 16:45 祥子哥哥 阅读(638) 评论(0) 推荐(0) 编辑