📄 database_drop.aspx
字号:
<%
Dim dbToDrop as String = Session("CatalogName")
session("CatalogName") = "master"
%>
<!--#include file="includes/topnav.aspx"-->
<%
try
d.execute("DROP DATABASE " & DBtoDrop)
d = nothing
dr = nothing
%>
<script language="Javascript">
parent.frames["LeftFrame"].location.href='databases.aspx';
parent.frames["MainFrame"].location.href='tables_list.aspx';
</script>
<%
catch e As System.Exception
With Response
.write ("<table width=""100%"" height=""70%"">")
.write ("<tr><td align=""Center"" valign=""Middle"">")
DisplayError (e)
.write ("</td></tr>")
.write ("</table>")
d = nothing
dr = nothing
End With
end try
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -