📄 css_switch.asp
字号:
<%
Set fso = Server.CreateObject("Scripting.FileSystemObject")
color_change_to = Trim(Request("color_change_to"))
If color_change_to <> "normal" And color_change_to <> "blue" And color_change_to <> "green" Then
Response.redirect "frame_sliderbar.asp"
Response.End
End If
color_change_to = color_change_to&".css"
If fso.FileExists("css\save.css") = True Then
fso.DeleteFile("css\save.css")
End If
Call fso.CopyFile(Server.MapPath("css\" & color_change_to),Server.MapPath("css") & "\save.css",true)
Set fso = Nothing
Response.redirect "frame_sliderbar.asp" '返回转到的网页
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -