09 2004 档案

 
[求助]在EditItemTemplate创建动态DropDownList问题
摘要:protected void DDownList(){ string connStr="server=" + ConfigurationSettings.AppSettings["ServerName"] + ";User ID="+ ConfigurationSettings.AppSettings["UserID"] +"; password="... 阅读全文
posted @ 2004-09-09 14:46 祥子哥哥 阅读(834) 评论(0) 推荐(0)
最近开发的文章管理系统
摘要:一直想开发一个功能比较齐全又能容易欠套到其他设计的文章管理系统,我现在已经开发出了一个半成品,有兴趣可以来看看,http://ucasp.net/corporation/admin/admin_index.asphttp://ucasp.net用户名:test密码:testtest下面是部分代码: function Votes(CID)'''投票列表 if CacheIsEmpty("vC... 阅读全文
posted @ 2004-09-07 13:42 祥子哥哥 阅读(885) 评论(1) 推荐(0)
C#中一些字符串操作的常用用法
摘要://获得汉字的区位码 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 祥子哥哥 阅读(630) 评论(0) 推荐(0)
StringBuilder字符串连接
摘要: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 祥子哥哥 阅读(850) 评论(0) 推荐(0)
createElement添加onMoserOver动作的问题
摘要:style type="text/css"> 阅读全文
posted @ 2004-09-02 14:13 祥子哥哥 阅读(1260) 评论(3) 推荐(0)
SqlDataAdapter
摘要: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 祥子哥哥 阅读(944) 评论(0) 推荐(0)
OleDbAdapter
摘要: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 祥子哥哥 阅读(644) 评论(0) 推荐(0)