摘要:
USE [DATA_TEMP] 02GO 03/****** 对象: StoredProcedure [dbo].[im531_Page] 脚本日期: 11/26/2010 10:52:35 ******/ 04SET ANSI_NULLS ON05GO 06SET QUOTED_IDENTIFIER ON07GO 0809-- ==================================... 阅读全文
摘要:
//遍历缓存 foreach (DictionaryEntry de in Cache) { Response.Write(string.Format("<br>{0}:{1}", de.Key, de.Value)); }//遍历session for (int i = 0; i < HttpContext.Current.Session.Count; i++) { Response.Write(HttpContext.Current.Session.Keys[i] + ":" + HttpContext.Current.Sessio 阅读全文
摘要:
如何获取fck编辑器的值呢,这给我出了一道难题的,是的,我和大家一样从网上搜索出了这些代码,但我一开始没有弄懂我的FCKeditorAPI怎么没有定义,怎么办呢我发现在fck编辑器其实不是一个常规的控件,他是一个由iframe框架传过来的html编辑器,记下iframe的id,这个要在查看源码中发现。最终我尝试的成功的结论是FCKeditorAPI.GetInstance换成window.框架名.FCKeditorAPI.GetInstance一切就正常了。function getEditorContents(){ var oEditor = FCKeditorAPI.GetInstance( 阅读全文
摘要:
C#清除所有缓存和显示所有缓存代码,具体如下://清除所有缓存 protected void RemoveAllCache() { System.Web.Caching.Cache _cache = HttpRuntime.Cache; IDictionaryEnumerator CacheEnum = _cache.GetEnumerator(); ArrayList al = new ArrayList(); while (CacheEnum.MoveNext()) { al.Add(CacheEnum.Key); } foreach (string key in al... 阅读全文
摘要:
本机只有ie7,ff3.5,opera10,测试在这三个环境中测试通过。在标准DOM中添加元素一般使用appendChild();但用js在table中添加行时却失效了。网上搜了一下说 ie6,ie7不支持table.appendChild("tr")那在JavaScript中怎么在一个table中添加一行呢?在http://www.w3schools.com/htmldom/dom_obj_table.asp看到w3c文档中HTML DOM Object存在tableObject.insertRow(index)方法。何不在插入行时用这个方法呢,毕竟在html中table 阅读全文