asp.net中动态变更CSS

在asp.net中,有的时候要动态变换CSS,比如有的时候做个性化页面,可以这样做

1<head>
2<link id="MyStyleSheet" rel="stylesheet" runat="server" type="text/css"/>
3</head>

之后,在要更换CSS的页面中,使用如下代码
Sub Page_Load(Sender As Object, E As EventArgs)
If Not (IsPostBack)
MyStyleSheet.Attributes.Add("href","/css/flostyle.css")
End If
End Sub

Published At
Categories with Web编程
Tagged with
comments powered by Disqus