asp.net中动态变更CSS

    技术2022-05-11  71

    在asp.net中,有的时候要动态变换CSS,比如有的时候做个性化页面,可以这样做 <head> <link id="MyStyleSheet" rel="stylesheet" type="text/css" runat="server" /> </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  

    最新回复(0)