我创建一个简单的WebResource,在哪里获取图片网址,但它不起作用?有什么问题?
下载我的样本链接:http://www.mediafire.com/?7sah76ww4c8915m
//in AssemblyInfo.cs
[assembly: System.Web.UI.WebResource("WebApplication4.Test.gif", "image/gif")]
protected void Page_Load(object sender, EventArgs e)
{
string d= this.ClientScript.GetWebResourceUrl(this.GetType(),
"WebApplication4.Test.gif");
Image i = new Image();
i.ImageUrl = d;
Controls.Add(i);
}