.NET学习爱好者

热爱编程事业

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2007年1月11日

摘要: 下面这段代码实现的功能是 把这种: 转成id userid managecollect type 管理水平 产品服务 社会责任 品牌服务1 2 52134 管理水平 5 .... ... 阅读全文
posted @ 2007-01-11 20:05 风景 阅读(291) 评论(2) 推荐(0) 编辑

摘要: alter proc proc_ttt @show varchar(10), @str varchar(100), @table nvarchar(200), @val int as declare @t table(a varchar(1000)) declare @i int declare @tmp varchar(1000) CREATE TABLE #t(x varchar(2000... 阅读全文
posted @ 2007-01-11 19:55 风景 阅读(157) 评论(0) 推荐(0) 编辑

摘要: alter proc proc_ttt @str varchar(100), @table nvarchar(200) as declare @t table(a varchar(1000)) declare @i int declare @tmp varchar(1000) CREATE TABLE #t(x varchar(2000)) set @str = @str+',' set @i... 阅读全文
posted @ 2007-01-11 19:53 风景 阅读(186) 评论(0) 推荐(0) 编辑

摘要: create proc proc_ttt @str varchar(100) as declare @t table(a varchar(100)) declare @i int set @i=0 while @i<=len(@str) begin set @i=charindex(',',@str) insert @t select ''+left(@str,@i-1) +'' set @... 阅读全文
posted @ 2007-01-11 19:52 风景 阅读(119) 评论(0) 推荐(0) 编辑

摘要: 方法一:create proc pub1 @table nvarchar(200), @id int as exec('select * from ['+ @table+'] where id='+@id) exec pub1 'admin','2' 方法二: alter proc up_test @table varchar(500) as declare @str varchar(500)... 阅读全文
posted @ 2007-01-11 19:50 风景 阅读(151) 评论(0) 推荐(0) 编辑

摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using ... 阅读全文
posted @ 2007-01-11 19:49 风景 阅读(322) 评论(0) 推荐(0) 编辑

摘要: 本代码从数据库中读出记录,有多层的套用,来生成XML,生成文件clientdao.MtvXmlDAO dao=new MtvXmlDAO();// 在此处放置用户代码以初始化页面DataTable dtagent=dao.MtvXmlAgent("agent_list").Tables[0];for... 阅读全文
posted @ 2007-01-11 17:41 风景 阅读(3809) 评论(0) 推荐(0) 编辑

摘要: 因为功能上的需要,有时候跟椐某种条件的查找的时候,DataGrid所显示的列数是不一样的,要动态绑定,昨天到网上找了下资料,自己整合了一下,贴出来给有需要的学习者参考.BoundColumn col=new BoundColumn(); col.HeaderText="内容ID"; col.DataField="contentid"; col.SortExpression = "... 阅读全文
posted @ 2007-01-11 14:02 风景 阅读(493) 评论(0) 推荐(0) 编辑

摘要: hello经过半天时间的查找,终于可以通这脚本调用客户端程序了,但是有一个问题要说的是,些程序必需要把IE的等级设置为中,还有要在IIS里虚拟目录里的配置里添加System32下的shell.dll,这样就可以调用了. 阅读全文
posted @ 2007-01-11 13:42 风景 阅读(231) 评论(0) 推荐(0) 编辑