Asp.net中WebResource的问题

时间:2011-08-10 00:55:47

标签: asp.net webresource.axd

我创建一个简单的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);

    }

0 个答案:

没有答案