随笔分类 -  asp.net

摘要:我们也可以手动下载URL Rewrite插件,这是官方地址:URL Rewrite下载, 安装完成后,webconfig添加如下配置。 <rewrite> <rules> <rule name="HostNameRule1"> <match url="(.*)" /> <!--匹配所有条件--> < 阅读全文
posted @ 2020-01-10 14:00 tianlong88 阅读(854) 评论(0) 推荐(0)
摘要:一、自定义 FCKeditor 的 BasePathBasePath 即FCKeditor在网站中的相对路径,默认值是 /fckeditor/,最好在Web.config appSettings中对其进行配置:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/... 阅读全文
posted @ 2010-11-28 08:33 tianlong88 阅读(294) 评论(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 @ 2010-09-04 14:50 tianlong88 阅读(281) 评论(0) 推荐(0)
摘要:一般全局变量存放在数据区,局部变量存放在栈区, 动态变量存放在堆区,函数代码放在代码区。 --------------------------------------------------------------- 栈区是普通的栈数据结构,遵循LIFO后进先出的规则,局部变量安排在那里是ASM时就规定的,这样可以在一个函数结束后平衡堆栈,操作简单,效率高 堆(动态区)在这里应当叫堆栈(不要和数据... 阅读全文
posted @ 2010-07-20 23:08 tianlong88 阅读(479) 评论(0) 推荐(0)