摘要:
alter procedure pGetInsertSQL (@tablename varchar(256))---WITH ENCRYPTIONasbegin---得到表中的SQL -- declare @tablename varchar(256) -- set @tablename = 'Design_DBPageStruct' --Create Table SQLtmp --( --sql varchar(4000) --)---Delete from SQLtmpif not exists (select * from dbo.sysobjects where id 阅读全文
摘要:
Html中的contentEditable的属性可以打开某些元素的可编辑状态.也许你没用过contentEditable属性.甚至从未听说过.contentEditable的作用相当神奇.可以让div或整个网页,以及span等等元素设置为可写.我们最常用的输入文本内容便是input与textarea 使用contentEditable属性后,可以在div,table,p,span,body,等等很多元素中输入内容. 如果想要整个网页可编辑,可在body标签内设置contentEditable contentEditable已在html5标准中得到有效的支持。 在IE8下设置表格可写不支持... 阅读全文
摘要:
今天看一个项目里用到了枚举作为下拉列表的数据源,感觉很不错,收藏下来,实现代码如下:绑定枚举的名称:DropDownList.DataSource= Enum.GetNames(typeof(枚举名称));DropDownList.DataBind();绑定枚举的值:DropDownList.DataSource = Enum.GetValues(typeof(枚举名称));DropDownList.DataBind(); 阅读全文