zoukankan
html css js c++ java
使用ASP.NET 2.0提供的WebResource管理资源
ASP.NET 2.0提供的Web Resources管理模型,很好的解决了image、css、script等外部资源的管理问题
在自定义控件中加入(
放在最高级namespace外就行
。
)
[assembly: WebResource(
"
WebCtrl.cutecat.jpg
"
,
"
image/jpg
"
)]
[assembly: WebResource(
"
WebCtrl.cutecat.js
"
,
"application/x-javascript
"
)]
代码:
WebResource Demo
#region
WebResource Demo
using
System;
using
System.Collections.Generic;
using
System.ComponentModel;
using
System.Text;
using
System.Web.UI;
using
System.Web.UI.WebControls;
[assembly: WebResource(
"
WebCtrl.cutecat.jpg
"
,
"
image/jpg
"
)]
namespace
WebCtrl
{
[DefaultProperty(
"
Text
"
)]
[ToolboxData(
"
<{0}:WebCustom runat=server></{0}:WebCustom>
"
)]
public
class
WebCustom : WebControl
{
private
string
text;
private
Image m_Image;
[Bindable(
true
)]
[Category(
"
Appearance
"
)]
[DefaultValue(
""
)]
public
string
Text
{
get
{
return
text; }
set
{ text
=
value; }
}
protected
override
void
CreateChildControls()
{
m_Image
=
new
Image();
this
.Controls.Add(m_Image);
}
protected
override
void
Render(HtmlTextWriter output)
{
m_Image.ImageUrl
=
this
.Page.GetWebResourceUrl(
typeof
(WebCustom),
"
WebCtrl.cutecat.jpg
"
);
this
.RenderChildren(output);
}
}
}
#endregion
查看全文
相关阅读:
PC版优酷的一次异常
颜宁开讲啦谈理性思考
李彦宏开讲啦谈判断能力
尝试插入cctv视频
selenium中quit与close方法的区别
CodeForces 131C The World is a Theatre(组合数)
CodeForces 446A DZY Loves Sequences(dp)
UVA 1631 Locker(密码锁)(dp记忆化搜索)
UVA 1630 Folding(串折叠)(dp记忆化搜索)
UVA 1629 Cake slicing(切蛋糕)(dp记忆化搜索)
原文地址:https://www.cnblogs.com/goldnet/p/1077895.html
最新文章
C# 使用自带Microsoft.Office.Interop.Excel简单操作Excel文件
java excel 刷新公式_POI刷新数据后的函数(公式)更新问题
CellType 及 CELL_TYPE_BLANK
【网络流】——P1251 餐巾计划问题
2018年第九届省赛C/C++A组第2题——星期一
2018年第九届省赛C/C++A组第2题——星期一
征战蓝桥 —— 2018年第九届 —— C/C++A组第1题——分数
征战蓝桥 —— 2018年第九届 —— C/C++A组第1题——分数
1124:矩阵加法
1124:矩阵加法
热门文章
1125:矩阵乘法
1125:矩阵乘法
1126:矩阵转置
1126:矩阵转置
晚上没灯时骑车注意安全
学习自然拼读法总结
我操老罗
爱因斯坦:我的信仰
Albert Einstein
关于时间的英语句子
Copyright © 2011-2022 走看看