摘要: /// /// 枚举变量/// public enum language{ empty, udc_New3,//北京, udc_NewGz,// 广州, udc_NewSh,//上海, che,//车网, udc//联合商情} static language langua; langua = (language)Enum.Parse(typeof(lan... 阅读全文
posted @ 2008-03-06 17:29 星答 阅读(460) 评论(0) 推荐(0) 编辑
摘要: cast( Round(A.iPrice,2) as varchar(50)) AS 单价 cast( Round(A.iPrice,0,1) as varchar(50)) AS 单价 阅读全文
posted @ 2008-03-05 17:38 星答 阅读(9556) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE [dbo].[Change] ( [ChangeID] Int IDENTITY primary key NOT NULL , [cAssetNo] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL , [cAsset_Name] [varchar] (200) COLLATE Chinese_PRC_CI_AS NULL ... 阅读全文
posted @ 2008-03-05 17:34 星答 阅读(7921) 评论(0) 推荐(0) 编辑
摘要: 仅显示选中项,没有被选中的不显示 cblDeptMent.Items.Clear(); SqlConnection conn = new SqlConnection(myConnectionString); SqlCommand command = new SqlCommand(" select Permissionid from dbo.tbl_User_U... 阅读全文
posted @ 2008-03-03 17:32 星答 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 服务里面的World Wide Web Publishing进程没有启动,启动该进程就OK了 阅读全文
posted @ 2008-03-03 17:28 星答 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: 在IIS的目录安全性下面设置为可以匿名访问 即可解决 阅读全文
posted @ 2008-02-27 18:05 星答 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 第一步:修改这一行为如下 Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "D:\ajaxPro\", "..\ajaxPro\WebajaxPro", "{DB81077B-03CD-4398-8726-002EB67C53EB}" 第二步:把IIS中的共享目录设置成D:\ajaxPro\WebajaxPro 这样就可以解决了 ... 阅读全文
posted @ 2008-02-27 18:04 星答 阅读(2206) 评论(0) 推荐(0) 编辑
摘要: 一颗两层节点完全展开的TreeView树 后台 ///绑定树 private void TreeDpTree() { treeVType.Nodes.Clear(); Desktop.BLL.Type newtype = new Desktop.BLL.Type(); DataSet ds = newtype.GetTypeWar... 阅读全文
posted @ 2008-02-15 09:53 星答 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2008-02-15 09:04 星答 阅读(355) 评论(0) 推荐(0) 编辑
摘要: id为主键,克隆一条数据,除了主键不同, name,author都相同 insert into blog(name,author) select name,author from blog where id = 1 克隆表: DataTable dt = new DataTable(); DataTable dtt = dt.Copy(); 阅读全文
posted @ 2007-09-19 12:06 星答 阅读(267) 评论(0) 推荐(0) 编辑