malaikuangren

What is the purpose or drive to build thing like (xxx),How can it achieve the original goal of design?

2013年7月31日

Add a stylesheet link programmatically in ASP.NET

摘要: Here’s a code snippet used to programmatically insert a stylesheet link to an external CSS file:// Create the element for the CSS filevar stylesheet = new HtmlLink { Href = "/path/to/stylesheet.css" };stylesheet.Attributes.Add("rel","stylesheet");stylesheet.Attributes.A 阅读全文

posted @ 2013-07-31 23:36 malaikuangren 阅读(251) 评论(0) 推荐(0) 编辑