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
查看全文
相关阅读:
Spark_3:Spark集群搭建
Spark_2:Spark 快速入门教程
Spark快速大数据分析_11:第十一章
Spark快速大数据分析_10:第十章
Spark快速大数据分析_9:第九章
Spark快速大数据分析_8:第八章
Spark快速大数据分析_7:第七章
Spark快速大数据分析_6:第六章
Spark快速大数据分析_5:第五章
java 内部类详解
原文地址:https://www.cnblogs.com/goldnet/p/1077895.html
最新文章
SSM框架整合
JDBC基础
JDBC加强
Spring IOC入门
Spring JDBC入门
Spring AOP入门
Spring 事务管理
MyBatis入门
SpringMVC入门
Django与MySQL数据库实现数据连接
热门文章
网站开发任务划分
网站的开发流程
Python中_x,__x和__x__的区别
Django添加favicon.ico图标
网站的运行原理
16、AttributeError: 'WSGIRequest' object has no attribute 'get'
网站中一些常用的术语
Django的框架模式——MTV
15、django.db.utils.IntegrityError: The row in table 'xxxxx' with primary key '1' has an invalid foreign key
flask_15_1:flask-admin 模型功能参数参照表
Copyright © 2011-2022 走看看