摘要: 1.firefox不能对innerText支持,也不知道为什么。firefox支持innerHTML但却不支持innerText,所以上网查了一下,原来它改支持textContent来实现innerText,不过实现得没有那么好,默认把多余的空格也保留了。如果不用textContent,如果字符串里面不包含HTML代码也可以用innerHTML代替2.禁止选取网页内容:在IE中一般用js:obj.... 阅读全文
posted @ 2008-05-30 11:03 星痕 阅读(254) 评论(0) 推荐(0) 编辑
摘要: ##############数据死锁用户的删除###################原因:数据库主体在该数据库中拥有 架构,无法删除。解决:ALTER AUTHORIZATION ON SCHEMA::db_owner TO dbo; 执行后手动删除即可更改某个表的用户([用户名].表名)exec sp_changeobjectowner 'tablename','dbo'--存储更改全部表CRE... 阅读全文
posted @ 2007-10-26 15:22 星痕 阅读(420) 评论(0) 推荐(0) 编辑
摘要: <divstyle="width:400px;height:48px;"><divstyle="float:left;margin:4px;background-color:#E7F3FF;border:1px#ADC3EFsolid;width:60px;height:40px;"></div><divstyle="float:left;margin:4... 阅读全文
posted @ 2006-12-18 13:53 星痕 阅读(787) 评论(0) 推荐(0) 编辑
摘要: 使用指针控制文本层上下滚动的脚本代码<SCRIPTLANGUAGE="JavaScript">functionscroll(objs,n){temp=n;document.getElementById(objs).scrollTop=document.getElementById(objs).scrollTop+temp;if(temp==0)return;setTimeout("sc... 阅读全文
posted @ 2006-12-01 10:59 星痕 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 1#region2///<summary>3///在客户端弹出确定对话框的代码4///</summary>5///<paramname="page">当前页面的指针,一般为this</param>6///<paramname="msg">弹出的内容</param>7publicstaticvoidmessagebox(Page... 阅读全文
posted @ 2006-11-06 15:49 星痕 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 获取字符串的字符长度 1 #region "获取字符串长度(中文*2英文*1)" 2 /// 3 /// 返回字符串的Ascii字符数量 4 /// 5 /// 查询字符串 6 /// Ascii字符数 7 public static int getStrLen(string st... 阅读全文
posted @ 2006-11-06 11:25 星痕 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 网站制作时显示的服务器资料 Environment.TickCount / 60000 //获取计算机运行时间int tick = Environment.TickCount / 60000;lblTic.Text = (tick / 60).ToString() + " 小时 " + (tick % 60).ToString() + " 分钟";int rem = Convert.ToInt... 阅读全文
posted @ 2006-11-03 17:35 星痕 阅读(576) 评论(0) 推荐(0) 编辑