ASP 常用知識點

2022-04-05 03:12:49 字數 641 閱讀 1833

開啟資料庫:

exec="select * from 資料庫表"

set rs=server.createobject("adodb.recordset")

rs.open exec,conn,1,1

引數1,1為讀取

讀取內容格式:<%=rs("字段")%>

新增記錄處理程式:

搜尋處理程式:

';頁面搜尋到的內容匯出來

<%

do while not rs.eof

%>

<%=rs("name")%>

<%=rs("tel")%>

<%=rs("time")%>

<%

rs.movenext

loop

%>

刪除記錄處理程式:

修改記錄處理程式:

修改記錄執行程式:輸入id號頁面》匯出相對應id資料》直接修改的處理程式

後台登陸處理程式例子:

每個後台頁面加上:

<%if not session("checked")="yes" then ';session裡面定義乙個checked字串變數

response.redirect "login.asp"

else

%>

mysql常用知識點 mysql 常用知識點。

mysql u root p show databases show tables select from abc order by id limit 0,10 create database bbb exit mysqldump u root p game home backup.sql mysq...

shell常用知識點

0 shell中if,while的條件語句怎麼寫 test和 字串比較 數字比較 g,l,e,n,q,t的組合 greater than,less than,equil,not equil,greater equil,less equil 1 shell的字串 str hello str hello...

Oracle常用知識點

oracle的預設賬號及密碼有以下三種 1.使用者名稱 sys密碼 change on install 2.使用者名稱 system密碼 manager 3.使用者名稱 scott密碼 tiger 注意登陸模式不是normal select 分組的列,sum 要求和的列 from 表 group b...