Click here to Skip to main content
Licence CPOL
First Posted 30 Nov 2007
Views 32,494
Downloads 149
Bookmarked 26 times

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

By Bhupendra Sinha | 14 Sep 2008
This article will explain how to embed/access JavaScript, CSS and images to server control’s assembly.
4 votes, 28.6%
1
2 votes, 14.3%
2
1 vote, 7.1%
3
3 votes, 21.4%
4
4 votes, 28.6%
5
3.17/5 - 14 votes
μ 3.17, σa 2.95 [?]

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

[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

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

Step 3: Embedding a Stylesheet

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

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.
//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)

About the Author

Bhupendra Sinha

Team Leader
Vertex Software
India India

Member
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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralShort n sweet Pinmemberksalvage0:35 7 Jul '09  
GeneralRe: Short n sweet PinmemberBhupendra Sinha9:39 11 Jul '09  
QuestionDebugging? PinmemberFlash Heart3:52 19 Feb '09  
AnswerRe: Debugging? PinmemberFlash Heart4:03 19 Feb '09  
GeneralRe: Debugging? PinmemberBhupendra Sinha9:40 11 Jul '09  
Generalsource code Pinmemberzhaojicheng22:10 13 Dec '07  
GeneralRe: source code PinmemberBhupendra Sinha19:44 16 Dec '07  
GeneralInteresting article Pinmembersambuccus11:19 9 Dec '07  
GeneralRe: Interesting article [modified] PinmemberBhupendra Sinha21:10 13 Dec '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 14 Sep 2008
Article Copyright 2007 by Bhupendra Sinha
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid