?? savezone.asp
字號:
<!--#include file="../include/admentor2.asp"-->
<%
''''''''''' (C) Stefan Holmberg 1999
''''''''''' Free to use if these sourcecode lines is not deleted
''''''''''' Contact me at webmaster@sqlexperts.com
''''''''''' http://www.sqlexperts.com
''''''''''' AdMentor homepage at http://www.create-a-webshop.com
Set oConn = AdMentor_DBOpenConnection()
Set oRS = Server.CreateObject("ADODB.Recordset")
Set oRS.ActiveConnection = oConn
oRS.Open "select * from zone",,adOpenKeyset,adLockOptimistic
'New
'
If g_AdMentor_Demo = False Then
oRS.AddNew
oRS("zonename").Value = Request.Form("name")
oRS("descr").Value = Request.Form("description")
oRS.Update
End If
oRS.Close
Set oRS = Nothing
oConn.Close
Set oConn = Nothing
Response.Redirect "adminzones.asp"
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -