ASP 缓存处理及URL 重写
1 缓存
1.1.1
<%--通过设置VaryByParam ="none" 来实现 整页缓存 --%>
<%@ OutputCache Duration="" VaryByParam ="none" %>
1.1.2
<%--带参数缓存,只要包含在VaryByParam 中的任何一个参数改变都会使页面缓存失效,如果当前参数不包含在VaryByParam中,则改变也无效--%>
<%@ OutputCache Duration="" VaryByParam="id;name;age" %>
1.1.3
<%--根据控件id来缓存整个页面--%> <%@ OutputCache Duration="" VaryByControl="a" %>
1.2 【Wed.config】 配置 缓存
<%@ OutputCache CacheProfile="MyCacheTest"%> 【Wed.config】 下的配置
<system.web>
<compilation debug="true" targetFramework="4.0" />
<!--统一页面缓存管理配置节点-->
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<!--duration:缓存事时间 name:缓存名称,在页面使用的时候 CacheProfile要指定name中设置的值-->
<add name="MyCacheTest" duration="" varyByParam="none" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
1.3 文件缓存 在asp中的后台代码:
protected void Page_Load(object sender, EventArgs e)
{
string atxtContent; if (Cache["datetimenow"] != null)
{
//lbdatetime.Text = Cache["datetimenow"].ToString();
lbdatetime.Text = Cache["datetimenow"].ToString();
}
else
{
DateTime now = DateTime.Now;
#region 设置缓存的绝对过期时间
Cache["datetimenow"] = now.ToString();
//设置缓存的绝对过期时间 中不设置相对过期时间 写法一:TimeSpan.Zero
Cache.Insert("datetimenow", now, null, DateTime.Now.AddSeconds(), TimeSpan.Zero);
//设置缓存的绝对过期时间 中不设置相对过期时间 写法二:System.Web.Caching.Cache.NoSlidingExpiration
Cache.Insert("datetimenow", now, null, DateTime.Now.AddSeconds(), System.Web.Caching.Cache.NoSlidingExpiration);
#endregion #region 设置缓存的相对过期时间
//设置缓存的相对过期时间
Cache.Insert("datetimenow", now, null, System.Web.Caching.Cache.NoAbsoluteExpiration, new TimeSpan(, , , )
, System.Web.Caching.CacheItemPriority.High, myCacheItemRemovedCallback);
#endregion #region 文件缓存依赖,首先:绝对过期时间和相对过期时间要设置不过期
//文件缓存依赖,首先:绝对过期时间和相对过期时间要设置不过期
// 定义该缓存要依赖的文件,注意传入文件的绝对路径 atxtContent = System.IO.File.ReadAllText(Server.MapPath("b.txt"));
CacheDependency cdFile = new CacheDependency(Server.MapPath("a.txt")); Cache.Insert("datetimenow"
, atxtContent
, cdFile
, System.Web.Caching.Cache.NoAbsoluteExpiration
, System.Web.Caching.Cache.NoSlidingExpiration
, System.Web.Caching.CacheItemPriority.High, myCacheItemRemovedCallback
);
#endregion lbdatetime.Text = atxtContent;
} } #region 当缓存被移除的时候,系统会自动调用该回调函数 +myCacheItemRemovedCallback(string key, object value, CacheItemRemovedReason reason)
/// <summary>
///当缓存被移除的时候,系统会自动调用该回调函数
/// </summary>
/// <param name="key">当前失效的缓存key</param>
/// <param name="value">当前失效时缓存key对应的缓存内容</param>
/// <param name="reason">缓存失效的原因</param>
void myCacheItemRemovedCallback(string key, object value, CacheItemRemovedReason reason)
{
System.IO.File.WriteAllText(@"E:\传智播客\7期班\2013-9-15 asp.net高级 缓存,工厂,单例\源代码\缓存\WebApplication1\log.txt"
, "key=" + key + " value=" + value + " reason=" + reason);
}
#endregion
1.4 数据库缓存 直接在【Web.config】中配置
<configuration>
<connectionStrings>
<add name="CachedbConnectString" connectionString="data source=.;initial catalog=PhoneBook;user id=sa;password=123" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<!--统一页面缓存管理配置节点-->
<caching> <sqlCacheDependency enabled="true" pollTime="">
<databases>
<add name="PhoneBook" connectionStringName="CachedbConnectString"/>
</databases>
</sqlCacheDependency> </caching> </system.web> </configuration>
URL重写
方法一:
新建一个 【Global.asax】文件 在它的 Application_BeginRequest 方法里写 获取URL,并通过 正则表达式 将 URL 重写
//得到当前url的请求路径
string currUrl = HttpContext.Current.Request.RawUrl; //top/1
string newUrl = ""; //定义正则表达式
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex("index/(.*)/(.*)");
if (reg.IsMatch(currUrl))
{
//将匹配的url替换成"index.aspx?id=$1&name=$2" 类型的字符串
newUrl = reg.Replace(currUrl, "index.aspx?id=$1&name=$2"); //重写是靠RewritePath(path) path只能传相对路径index.aspx?id=1&name=2 而不能传http://loclhost/index.aspx?id=1&name=2
HttpContext.Current.RewritePath(newUrl);
方法二:在Internet 中选中网站后
在URL 重写中 --添加规则 --用户友好URL
在这里就是将你要修改的URL写到URL 输入框里,下面的下拉框选择你要的URL格式
如果有漏的,希望有大神补充一下!!
ASP 缓存处理及URL 重写的更多相关文章
- 转载MSDN 在ASP.NET 中执行 URL 重写
转载文章原网址 http://msdn.microsoft.com/zh-cn/library/ms972974.aspx 摘要:介绍如何使用 Microsoft ASP.NET 执行动态 URL 重 ...
- ASP.NET伪静态 UrlRewrite(Url重写) 实现和配置
核心提示:大家一定经常在网络上看到很多网站的地址后缀都是用XX.HTML或者XX.ASPX等类似静态文件的标示来操作的吧,那么大家有怀疑过他真的是一个一个的静态生成的文件么,静态文件的生成的优缺有好有 ...
- 【ASP.NET Core】URL重写
今天老周和大伙伴们聊聊有关 Url Rewrite 的事情,翻译过来就是 URL 重写. 这里不得不提一下,URL重定向与重写的不同. 1.URL重定向是客户端(通常是浏览器)向服务器请求地址A,然后 ...
- 在 ASP.NET 中执行 URL 重写的方法
由于需要我们经常会想将动态的页面做成伪静态的,或者在get传值的时候使其简洁明了(实现“可删节”的URL),这时我们需要用到URL重写,微软的MSDN上有详细的原理和使用介绍.我这里就将一种简单的使用 ...
- ASP.NET过滤器、URL重写
过滤器可以对指定的URL访问进行拦截,并执行过滤器的方法,根据实际应用情况,在过滤器中修改请求的代码.判断会话信息,也可以做权限控制. 一:编写过滤器,实现URL重写并配置过滤 编写过滤器,就是编写一 ...
- ASP.NET 中执行 URL 重写
具体实现步骤(其中的一种实现方法): 一.下载相关的DLL(ActionlessForm.dll和UrlRewriter.dll) http://download.csdn.net/detail/yi ...
- UrlRewrite(URL重写)--ASP.NET中的实现
概述 今天看了下URL重写的实现,主要看的是MS 的URL Rewrite. URL重写的优点有:更友好的URL,支持老版本的URL URL重写的缺点有:最主要的缺点是性能低下,因为如果要支持无后缀的 ...
- ASP.NET Core 2 学习笔记(八)URL重写
路由跟URL 重写的功能性略有不同.路由是将Request 找到对应的服务,而URL 重写是为了推卸责任转送Request.本篇将简单介绍下ASP.NET Core的URL重写(URL Rewrite ...
- C# WebService URL重写
背景 有时候我们会有这样的需求,将 WebService URL 中的 asmx 后缀去掉:或者我们要模拟普通 Web 的 URL,接口名称直接拼接在 URL 中.这些情况我们都要用到URL重写. 关 ...
随机推荐
- sudo:must be setuid root 解决方法 <转>
http://walkerqt.blog.51cto.com/1310630/1354103
- 使apk具有system权限
使apk具有system权限的方法: 方法一: 1. 在应用程序的AndroidManifest.xml中的manifest节点中加入 android:sharedUserId=" ...
- css常用属性总结第二弹:id选择器
承接上一篇class选择器,这一篇我们来说说css的id选择器. id选择器类似于类选择器,不过也有一些重要的差别,首先,id选择器前面有一个#号----称它为棋牌号吧,class为点号,用法就和cl ...
- split files test
python split_upload.py /root/github/python/s3_test/test.txt dbelt dumps python download_to ...
- aws s3 python sdk
http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.get_object abort_multipar ...
- web前端整套面试题(二)--今日头条面试题
12道单选,7道不定项选择,2道编程题 一.单选(12题) 1.[单选题]在HTML中,( )可以在网页上通过链接直接打开邮件客户端发送邮件. A.<a href=”telnet:ming.zh ...
- json和jsonp的区别(转)
原文链接:http://www.cnblogs.com/dowinning/archive/2012/04/19/json-jsonp-jquery.html 前言: 说到AJAX就会不可避免的面临 ...
- 富文本编辑器和fastdfs的使用
宜立方商城的系统架构a) 功能介绍(项目架构,有哪些功能模块,这些功能模块如何实现?)b) 架构讲解工程搭建-后台工程c) 使用maven搭建工程(后台工程如何搭建?)d) 使用maven的tomca ...
- 启动redis注意事项
1.需要修改配置文件 redis.conf 三处 a.将bind 127.0.0.0 修改为 bind 0.0.0.0 b.daemonize no 修改为 daemonize ...
- 隐藏在default construct后面的是什么
C++新手很容易陷入两个认识上的误区: 1.任何类如果不显示的定义一个构造函数那么编译器就会构造出一个默认构造函数. 2.默认构造函数负责类的所有数据成员的初始化,显然不是这样的. 为什么不是这样的, ...