加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
proxy.aspx 1021 Bytes
一键复制 编辑 原始数据 按行查看 历史
yukaizhao 提交于 2012-03-11 10:54 . No commit message
<%@ Page Language="C#" %>
<script runat="server">
protected override void OnPreRender(EventArgs e){
Response.ContentType = "text/xml";
Response.ContentEncoding = Encoding.UTF8;
string url = Request.QueryString["url"];
string randomPart = "random=";
int randomIndex = url.LastIndexOf(randomPart);
string noRandomUrl;
if(randomIndex>0){
noRandomUrl = url.Substring(0,randomIndex-1);
}else{
noRandomUrl = url;
}
string cacheKey = string.Format("proxy-{0}",noRandomUrl);
string html = (string)Cache.Get(cacheKey);
if(html==null){
using(System.Net.WebClient wc = new System.Net.WebClient()){
html = wc.DownloadString(url);
}
Cache.Insert(cacheKey,html,null,Cache.NoAbsoluteExpiration,TimeSpan.FromMinutes(1),CacheItemPriority.AboveNormal,null);
}
Response.Write(html);
}
</script>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化