文章詳情頁
ASP新手必備的基礎(chǔ)知識
瀏覽:301日期:2022-06-05 13:03:37
我們都知道,ASP是Active Server Page的縮寫,意為“動態(tài)服務(wù)器頁面”。ASP是微軟公司開發(fā)的代替CGI腳本程序的一種應(yīng)用,它可以與數(shù)據(jù)庫和其它程序進行交互,是一種簡單、方便的編程工具。下面介紹一些基本知識,供大家參考。
一、數(shù)據(jù)庫連接
以下為引用的內(nèi)容:
<% set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("數(shù)據(jù)庫名") %>
二、打開數(shù)據(jù)庫
以下為引用的內(nèi)容:
exec="select * from 數(shù)據(jù)庫表" set rs=server.createobject("adodb.recordset") rs.open exec,conn,1,1
參數(shù)1,1為讀取
讀取內(nèi)容格式:<%=rs("字段")%>
三、添加記錄處理程序
以下為引用的內(nèi)容:
<% set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("數(shù)據(jù)庫名") name=request.form("字段") name,tel,message為提交表單所設(shè)置的字段值 tel=request.form("字段") message=request.form("字段") exec="insert into 表名(字段)values(""+字段+"")" 多個用逗號隔開 conn.execute exec 使用execute提交 conn.close set conn=nothing %>
四、搜索處理程序
以下為引用的內(nèi)容:
<% name=request.form("字段") name,tel為提交表單所設(shè)置的字段值 tel=request.form("字段") set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("數(shù)據(jù)庫名") exec="select * from 表 where name=""+字段+"" and tel="+字段 set rs=server.createobject("adodb.recordset") rs.open exec,conn,1,1 %> "頁面搜索到的內(nèi)容導(dǎo)出來 <% do while not rs.eof %><tr> <td><%=rs("name")%></td> <td><%=rs("tel")%></td> <td><%=rs("time")%></td> </tr> <% rs.movenext loop %>
五、刪除記錄處理程序
以下為引用的內(nèi)容:
<% set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("數(shù)據(jù)庫名") exec="delete * from 表名 where 編號="&request.form("id") conn.execute exec %>
六、修改記錄處理程序
以下為引用的內(nèi)容:
<% set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("數(shù)據(jù)庫名") exec="select * from 表名 where 編號="&request.form("id") set rs=server.createobject("adodb.recordset") rs.open exec,conn,1,3 "1,3為修改意思 rs("name")=request.form("字段") "name,tel,message為提交表單所設(shè)置的字段值 rs("tel")=request.form("字段") rs("message")=request.form("字段") rs.update rs.close set rs=nothing conn.close set conn=nothing %>
修改記錄執(zhí)行程序:輸入ID號頁面>>>導(dǎo)出相對應(yīng)ID數(shù)據(jù)>>>>>>直接修改的處理程序
七、后臺登陸處理程序例子
以下為引用的內(nèi)容:
<% dim name,password name=request.form("name") password=request.form("password") dim exec,conn,rs exec="select *from 表名 where(name=""&字段&"" and password=""&字段&"")" set conn=server.createobject("adodb.connection") conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("數(shù)據(jù)庫名") set rs=server.createobject("adodb.recordset") rs.open exec,conn if not rs.eof then rs.Close conn.Close session("checked")="yes" session("check")="right" response.Redirect "index.asp" else session("checked")="no" session("check")="wrong" response.Redirect "login.asp" end if %>
每個后臺頁面加上:
<%if not session("checked")="yes" then "session里面定義一個checked字符串變量 response.Redirect "login.asp" else %>
希望以上對于ASP基礎(chǔ)知識的介紹,能給初學(xué)者帶來一定的幫助。
標(biāo)簽:
ASP
相關(guān)文章:
1. 解決ASP中http狀態(tài)跳轉(zhuǎn)返回錯誤頁的問題2. ASP動態(tài)網(wǎng)頁制作技術(shù)經(jīng)驗分享3. ASP中if語句、select 、while循環(huán)的使用方法4. ASP中解決“對象關(guān)閉時,不允許操作。”的詭異問題……5. ASP.NET泛型三之使用協(xié)變和逆變實現(xiàn)類型轉(zhuǎn)換6. ASP使用MySQL數(shù)據(jù)庫的方法7. ASP.NET MVC使用異步Action的方法8. asp中response.write("中文")或者js中文亂碼問題9. asp畫中畫廣告插入在每篇文章中的實現(xiàn)方法10. 初識XML基礎(chǔ)知識
排行榜
