摘要:IE9.0与IE8.0Table中的区别:1。IE9.0中TD默认是居中,IE8.0中TD默认是居左,为了兼容性,最好将TD的align的属性写上。
阅读全文
09 2011 档案
摘要:/// <summary> /// 删除DataTable中重复的记录 /// </summary> /// <param name="ds"></param> /// <returns></returns> public DataSet DeleteSameData(DataSet ds) { DataSet resultds = ds.Clone(); DataSet Tempds=ds; int count = 0; if (ds != null && ds.Tables.Coun
阅读全文
摘要:CREATEFUNCTION [dbo].[StripAllTags]( @input VARCHAR(8000))RETURNS VARCHAR(8000)ASBEGIN declare @Result varchar(8000), @start int, @end int, @len int set @input = @input+'<>' set @Result = '' set @len=len(@input) set @start = charindex('<',@input,1) set @end = charind
阅读全文