博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用ASP.NET 2.0提供的WebResource管理资源
阅读量:7104 次
发布时间:2019-06-28

本文共 2182 字,大约阅读时间需要 7 分钟。

  ASP.NET(1.0/1.1)给我们提供了一个开发WebControl的编程模型,于是我们摆脱了asp里面的include模式的复用方式。不过1.0/1.1提供的Web控件开发模型对于处理没有image、css等外部资源的组件还算比较得心应手,script虽然很多时候也是外部资源,但在开发控件的时候我们习惯把script使用Page.Register...Script()来嵌入模块,因为紧凑的东西更便于我们复用,用一个dll就可以解决问题又何必要节外生枝呢。
     ASP.NET 2.0提供的Web Resources管理模型,很好的解决了image、css、script等外部资源的管理问题。现在只需要在solution explorer把资源文件的build action属性设为Embedded Resource。然后在assemblyinfo.cs里添加一句:
None.gif[assembly: WebResource("WebCtrl.cutecat.jpg", "image/jpg")]
None.gif
    我们可以看msdn里有WebResource的参数说明:第一个是资源的名字,第二个是资源的 名。
    其实这个语句放任何cs文件里,保证放在最高级namespace外就行。
    然后在程序中调用如下:
None.gifm_Image.ImageUrl = 
this.Page.GetWebResourceUrl(
typeof(WebCustom), "WebCtrl.cutecat.jpg");
None.gif
    GetWebResourceUrl的第一个参数是用户定义的类型(这个是用来确定assembly用的),第二个参数是资源名。
    上面的语句返回给browser的代码是:
None.gif
<
img 
src
="WebResource.axd?a=pWebCtrl&amp;r=WebCtrl.cutecat.jpg&amp;t=632390947985312500"
 style
="border-width:0px;"
 
/>
    其中的src就是GetWebesourceUrl执行后返回的,它有3个参数(这里的&被解析成了&amp;,不过IIS也认的),第一个参数a是就是通过typeof(WebCustom)来确定的assembly的名字,第二个参数r很明显就是资源的名字了,第三个参数t是一个a所指的assembly的timestamp。这个t是为了让资源的引用能享用browser缓存的优化,因为IE对相同的url有自己的cache机制。又因为这个r同时又是用户assembly文件的timestamp,如果用户更新了代码,重新编译后t也会变化,这样也就保证了browser能获得最新的资源更新。如果我们能确定嵌入资源是确实不用再更新的,我们可以在typeof()里写一个bcl里的类型,比如typeof(string),那么他将只在freamwork升级后才会变动这个t。
    当然这个WebResource.axd是不存在的,它只是IIS中的一个ISAPI影射。
    使用示例代码如下:
ExpandedBlockStart.gif
#region WebResource Demo
InBlock.gif
InBlock.gif
using System;
InBlock.gif
using System.Collections.Generic;
InBlock.gif
using System.ComponentModel;
InBlock.gif
using System.Text;
InBlock.gif
using System.Web.UI;
InBlock.gif
using System.Web.UI.WebControls;
InBlock.gif
InBlock.gif[assembly: WebResource("WebCtrl.cutecat.jpg", "image/jpg")]
InBlock.gif
InBlock.gif
namespace WebCtrl
ExpandedSubBlockStart.gif{
InBlock.gif    [DefaultProperty("Text")]
InBlock.gif    [ToolboxData("<{0}:WebCustom runat=server></{0}:WebCustom>")]
InBlock.gif    
public 
class WebCustom : WebControl
ExpandedSubBlockStart.gif    {
InBlock.gif        
private 
string text;
InBlock.gif        
private Image m_Image;
InBlock.gif
InBlock.gif        [Bindable(
true)]
InBlock.gif        [Category("Appearance")]
InBlock.gif        [DefaultValue("")]
InBlock.gif        
public 
string Text
ExpandedSubBlockStart.gif        {
ExpandedSubBlockStart.gif            
get { 
return text; }
ExpandedSubBlockStart.gif            
set { text = value; }
ExpandedSubBlockEnd.gif        }
InBlock.gif
InBlock.gif        
protected 
override 
void CreateChildControls()
ExpandedSubBlockStart.gif        {
InBlock.gif            m_Image = 
new Image();
InBlock.gif            
this.Controls.Add(m_Image);
ExpandedSubBlockEnd.gif        }
InBlock.gif
InBlock.gif        
protected 
override 
void Render(HtmlTextWriter output)
ExpandedSubBlockStart.gif        {
InBlock.gif            m_Image.ImageUrl = 
this.Page.GetWebResourceUrl(
typeof(WebCustom), "WebCtrl.cutecat.jpg");
InBlock.gif            
this.RenderChildren(output);
ExpandedSubBlockEnd.gif        }
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockEnd.gif}
ExpandedBlockEnd.gif
#endregion

本文转自博客园鸟食轩的博客,原文链接:http://www.cnblogs.com/birdshome/,如需转载请自行联系原博主。

你可能感兴趣的文章
Silverlight+WCF 新手实例 象棋 登陆与转向(十一)
查看>>
Elasticsearch 多字段聚合 结果封装为map
查看>>
apache 的 mod status 模块可能会泄漏服务器信息
查看>>
SpringBoot学习 (二) Spring Boot Security
查看>>
Nginx 的开发公司C 轮融资4300 万美元
查看>>
JVM:查看java内存情况命令
查看>>
-[TTRequestLoader connection:didReceiveResponse...
查看>>
程序Debug运行的时候,老是显示“0x755c9617 处最可能的异常: 0x000006B...
查看>>
apkplug主题切换功能之主题包打包编译-07
查看>>
手把手让你实现开源企业级web高并发解决方案
查看>>
circular buffer in Linux kernel
查看>>
Bug描述
查看>>
mac下的项目管理软件OmniPlan的使用
查看>>
iOS为网站添加图标到主屏幕以及增加启动画面
查看>>
matlab的一些用发plot颜色
查看>>
生存的现状及环境
查看>>
线程入门-使用Execcutor
查看>>
setNeedsLayout 与 setNeedsDisplay
查看>>
康托展开与逆康托展开
查看>>
hadoop 2.7.2 安装
查看>>