在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