5,693,062 members and growing! (19,445 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Intermediate

WebResource ASP.NET 2.0 explained

By Gary Dryden

WebResource (rumours and lies exposed): this is how you really do it.
C#, Javascript, Windows, .NET 2.0, .NET, ASP.NET, Visual Studio, VS2005, Dev

Posted: 8 Feb 2006
Updated: 26 Feb 2006
Views: 107,372
Bookmarked: 102 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
43 votes for this Article.
Popularity: 7.29 Rating: 4.46 out of 5
7 votes, 16.7%
1
1 vote, 2.4%
2
1 vote, 2.4%
3
2 votes, 4.8%
4
31 votes, 73.8%
5

Introduction

This code drop is part of Redux series. This article started out to be about a dropdown date/time ASP.NET 2.0 server control. So I built the control and all its ancillary JavaScript, along with the images, and then everything was put into a zip file for uploading to the CodeProject. The installation instructions for the control went something like this:

  • Unzip the contents to a folder.
  • Copy the DLL to the Bin folder of your new project.
  • Copy the JavaScript file.
  • Copy the CSS file.
  • Copy the images.

Hey, wait a minute, this is really lame, why all the extra files, why not embed them into the DLL as resources. That was the beginning of three days of hell trying to understand and work with WebResources. I have boiled it down to about twenty lines of working code.

Nothing else on the net gives you an actual working sample and a lot of the information is simply wrong (possibly because it was based on beta versions). Well, this code compiles and runs on the release version of .NET 2.0.

Code snippets

Create a project which looks like this (you can get the control from the download and then just add an ASP.NET project to the solution):

Highlight the three files in MyResources, and in the Properties window, set Build Action to Embedded Resource:

The source for the control is as follows:

namespace MyWebResourceProj
{
  [ToolboxData("<{0}:MyWebResource runat="server"></{0}:MyWebResource>")]
  public class MyWebResource : System.Web.UI.WebControls.TextBox
  {
      protected override void RenderContents(HtmlTextWriter output)
      {
         output.Write(Text);
      }

      protected override void OnInit(EventArgs e)
      {
        base.OnInit(e);
        this.Page.ClientScript.RegisterClientScriptInclude(
           this.GetType(), "Test", 
           Page.ClientScript.GetWebResourceUrl(this.GetType(), 
           "MyWebResourceProj.MyResources.Test.js"));

        // create the style sheet control

        // and put it in the document header

        string csslink = "<link href='" + 
           Page.ClientScript.GetWebResourceUrl(this.GetType(), 
            "MyWebResourceProj.MyResources.Test.css")
           + "' rel='stylesheet' type='text/css' />";
        LiteralControl include = new LiteralControl(csslink);
        this.Page.Header.Controls.Add(include);
      }
  }

This is not a discussion on server controls, so let's focus on the parameters of GetWebResourceUrl:

  • this.GetType() - mandatory, just do it.
  • "MyWebResourceProj.MyResources.Test.js" - this is the most misunderstood parameter and the source of just about all errors. It is composed of [Assembly of this project].[Folder containing resource].[Filename of resource].

No matter what you read anywhere else, including Microsoft's official documentation (which is wrong), if you don't do it this way, you will fail (I know this from personal experience).

Now on to the AssemblyInfo.cs:

[assembly: System.Web.UI.WebResource(
      "MyWebResourceProj.MyResources.Test.css", "text/css")]
[assembly: System.Web.UI.WebResource(
      "MyWebResourceProj.MyResources.Test.js", 
      "text/javascript", PerformSubstitution = true)]
[assembly: System.Web.UI.WebResource(
      "MyWebResourceProj.MyResources.Test.gif", "image/gif")]

You need to specify the resource name exactly as you did in your program code. You need to specify the mime-type. If the file contains JavaScript, you may want to have ASP.NET perform text substitution. For example, you may have a line in JavaScript like:

document.write("<img src='Test.gif'>");

When you embed your images in a resource, you no longer know the name of it as it appears in the resource. To fix this, code as follows:

document.write("<img src='<%=WebResource("MyWebResourceProj" + 
                                 ".MyResources.Test.gif")%>'>");

All the "official documentation" and all the articles on the web say that you can leave [AssemblyName].[FolderName] out. But they are dead wrong!

Note: if you are using this control as the base class of another, see yc4king's note below.

Update

KonstantinG has pointed out an error which only becomes apparent when your namespace is not the same as your assembly name. Previously, I had indicated that the name of the resource is: [Namespace of this project].[Folder containing resource].[Filename of resource], but really it is [Assembly of this project].[Folder containing resource].[Filename of resource]. As always, the best way to find information on this is by using Lutz Roeder's .NET Reflector available at aisto.com.

SmashGrab / Redux series

I have recently started two series of articles here at CodeProject.

Smash and Grab is intended as a series of short articles on one specific code technique. Redux is intended as a series of longer articles which attempts to reduce a complicated topic (like WebResource) into its basic constituent parts and show that once you have all the information, it isn't really that hard. To find the Smash and Grab articles, search for the keyword SmashGrab. To find the Redux articles, search for the keyword Redux. I welcome any contributions to either series, but please follow the guidelines when submitting articles to either.

Conclusion

So there you have it, everything you need to know to use WebResources. This article documented how to place CSS files in the <head> section, extract JavaScript files, dynamically change the contents of a JavaScript file.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Gary Dryden



Occupation: Web Developer
Location: Canada Canada

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 76 (Total in Forum: 76) (Refresh)FirstPrevNext
GeneralMy vote of 2memberykorotia8:52 26 Nov '08  
Rantfor those who doesn't know what is msdn and asp.net forummemberykorotia8:51 26 Nov '08  
GeneralAwesome articlememberAbhishek sur23:28 9 Oct '08  
Generalthanks for removing the confusionmemberpsykoptic3:11 29 Jul '08  
GeneralGreat Articlememberkarpach967:17 9 Jul '08  
QuestionResource not showing when in release modemembermrod1510:53 3 Jun '08  
Generalholding the control propertiesmemberjayaram04078:01 6 May '08  
GeneralImage not displayed from assembly web resourcememberSudhir Yadav23:30 25 Oct '07  
GeneralRe: All the "official documentation" ..... are dead wrong!memberExtractor22:04 7 Aug '07  
GeneralRe: All the "official documentation" ..... are dead wrong!memberstmarti3:56 12 Sep '07  
GeneralGood workmemberleapoflogic11:19 10 Jun '07  
GeneralWorth MentioningmemberFrank Olorin Rizzi5:36 19 May '07  
QuestionJS functions not workingmemberUdit Handa0:15 2 May '07  
Questionwhat if head is not runat=server?memberSib221:54 6 Mar '07  
AnswerRe: what if head is not runat=server?membermortb2:07 16 May '07  
GeneralWebResource and MasterPagemembercrustiq23:49 14 Feb '07  
AnswerRe: WebResource and MasterPagememberMarkBaldwin15:55 24 May '07  
GeneralDude you are the bestmember13:08 5 Feb '07  
GeneralThanks!!!!membermaurocodeproject13:50 22 Jan '07  
GeneralMy Toolbox image not reflecting with new imagememberRamesh Tamma8:33 16 Jan '07  
GeneralDLL Resource ReferencememberTonyCsr9:53 15 Nov '06  
GeneralThe folder problemmemberennixo11:16 14 Sep '06  
GeneralBut Atlas Changes everything?memberjokva10:00 13 Sep '06  
GeneralPage.ClientScript does not compilememberwebber1234568:49 10 Sep '06  
Generalthis.GetType() - mandatory, just do it. - EXPLAINEDmemberAdam Selene15:40 7 Sep '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 26 Feb 2006
Editor: Rinish Biju
Copyright 2006 by Gary Dryden
Everything else Copyright © CodeProject, 1999-2008
Web11 | Advertise on the Code Project