Click here to Skip to main content
15,883,868 members
Articles / Web Development / ASP.NET
Article

How to Embed /Access JavaScript, CSS, Images in an Assembly.

Rate me:
Please Sign up or sign in to vote.
3.26/5 (18 votes)
14 Sep 2008CPOL1 min read 76.5K   799   27   10
This article will explain how to embed/access JavaScript, CSS and images to server control’s assembly.

Introduction

This article makes you go through the concept on how to embed/access JavaScript, CSS and images to server control's assembly.

Background

Resources embedded within an assembly can be accessed through the WebResource.axd HTTP Handler. This Handler is needed because we need some mechanism to get this code at the client side to be executed and rendered as well (see the source code of the page - you will observe some strange URL code that you haven't written anywhere though it is present on that page. This is because of embedding and accessing JavaScript/CSS/Images through WebResource.axd).

Using the Code

We need to follow few steps for the completion of Embedding JS/CSS/Images in an Assembly.

Step 0

Simply add the file (JS/CSS/Image) to your project, go to the Properties pane, and set the Build Action to Embedded Resource.

Step 1: AssemblyInfo.cs Entries

C#
[assembly: System.Web.UI.WebResource("Img_Button.gif", "img/gif")];//see Note

[assembly: System.Web.UI.WebResource("TextBox.css", "text/css")];
[assembly: System.Web.UI.WebResource("ABC.js", "text/js")];

Step 2: Embedding an Image

C#
Image img= new Image();
img.ImageUrl = Page.ClientScript.GetWebResourceUrl(this.GetType(), "Img_Button.gif");

Step 3: Embedding a Stylesheet

C#
string tempLink= "<link rel='stylesheet' text='text/css' href='{0}' />";
string location = Page.ClientScript.GetWebResourceUrl(this.GetType(), "TextBox.css");
LiteralControl include = new LiteralControl(String.Format(tempLink, location));
((HtmlControls.HtmlHead) Page.Header).Controls.Add(include);

Step 4: Embedding JavaScript

C#
string srptLoc =Page.ClientScript.GetWebResourceUrl(this.GetType(), "ABC.js");
Page.ClientScript.RegisterClientScriptInclude("ABC.js", srptLoc);

Note

  1. Add .axd extension in your virtual directory configuration (all configuration settings should be like that of ASPX extension).
  2. File name should be DefaultNamespace.Filename.Extension (use reflector tool to get the actual name in the embedded assembly). This is required in Assemblyinfo.cs file entry see Step-1.
  3. Write all the above code for registration OnPrerender(or OnInit) event.
C#
//For Example :

protected override void OnPreRender(EventArgs e)
{
    // When pre-rendering, add in external JavaScript file
    Page.ClientScript.RegisterClientScriptInclude("ABC", 
                 Page.ClientScript.GetWebResourceUrl(this.GetType(), 
                                             "ABC.js"));

    base.OnPreRender(e);
}

You may have possibly liked this article. I have written this article with the hope that it may somehow help you in due course of your learning.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Vertex Software
India India
5+years,ASP.NET(1.1 and 2.0,3.5),c#.net,SharePoint, Webservices,XML, SQL Server 2000, VS 2008/2005/2003, Remoting, AD, Nunit, NHibernate,Design Patterns,Microsoft Ajax,Agile Technology,LINQ,WCF,WF,REST Service,Microsoft MVC framework

Comments and Discussions

 
GeneralMy vote of 4 Pin
Hal Diggs30-Jul-12 9:52
professionalHal Diggs30-Jul-12 9:52 
clear and concise.
GeneralShort n sweet Pin
ksalvage6-Jul-09 23:35
ksalvage6-Jul-09 23:35 
GeneralRe: Short n sweet Pin
Bhupendra Sinha11-Jul-09 8:39
Bhupendra Sinha11-Jul-09 8:39 
QuestionDebugging? Pin
Sphengle19-Feb-09 2:52
Sphengle19-Feb-09 2:52 
AnswerRe: Debugging? Pin
Sphengle19-Feb-09 3:03
Sphengle19-Feb-09 3:03 
GeneralRe: Debugging? Pin
Bhupendra Sinha11-Jul-09 8:40
Bhupendra Sinha11-Jul-09 8:40 
Generalsource code Pin
zhaojicheng13-Dec-07 21:10
zhaojicheng13-Dec-07 21:10 
GeneralRe: source code Pin
Bhupendra Sinha16-Dec-07 18:44
Bhupendra Sinha16-Dec-07 18:44 
GeneralInteresting article Pin
sambuccus9-Dec-07 10:19
sambuccus9-Dec-07 10:19 
GeneralRe: Interesting article [modified] Pin
Bhupendra Sinha13-Dec-07 20:10
Bhupendra Sinha13-Dec-07 20:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.