Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to add references to JS files and css files dynamically in the background by asp.net

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

In this article Xiaobian introduces in detail for you "asp.net how to dynamically add references to JS files and css files in the background" with detailed contents, clear steps and proper handling of details. I hope that this article "asp.net how to dynamically add JS files and references to css files in the background" can help you solve your doubts.

First add a namespace

Using System.Web.UI.HtmlControls

The code dynamically adds a reference to the css file:

HtmlGenericControl myCss = new HtmlGenericControl (); myCss .TagName = "link"; myCss .Attributes.Add ("type", "text/css"); myCss .Attributes.Add ("rel", "stylesheet"); myCss .Attributes.Add ("href", ResolveUrl ("css file path")); this.Page.Header.Controls.AddAt (0, myCss)

The code dynamically adds a reference to the JS file:

HtmlGenericControl myJs = new HtmlGenericControl (); myJs .TagName = "script"; myJs .Attributes.Add ("type", "text/javascript"); myJs .Attributes.Add ("src", ResolveUrl ("js file path")); this.Page.Header.Controls.AddAt (1, myJs) Read this, the "asp.net how to dynamically add JS files and css file references" article has been introduced, want to master the knowledge of this article also need to practice and use in order to understand, if you want to know more about the article, welcome to pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report