菜鳥十天學會ASP教程之第七天:刪除記錄

來源:互聯網
上載者:User
教程|十天學會

  上一節:查詢記錄

  學習目的:學會資料庫的基本操作--刪除記錄

  開門見山,大家直接看程式。

exec="delete * from guest where id="&request.form("id")

  上面這句話完成了刪除記錄的操作,不過鎖定記錄用了記錄唯一的表示id,我們前面建立資料庫的時候用的是系統給我們的主鍵,名字是編號,由於是中文的名字不是很方便,大家可以修改為id,我已經修改了啊!

  不修改的話就是用下面的代碼了:

exec="delete * from guestbook where 編號="&request.form("id")

  下面我們看完整的代碼:一個表單傳給ASP檔案一個ID,然後這個ASP檔案就刪除了這個ID。

  7.htm:

<form name="form1" method="post" action="exam7.asp">
請輸入刪除的ID號:
<input type="text" name="id">
<input type="submit" name="Submit" value="提交">
</form>

  exam7.asp:(可以先運行這個檔案看一下所有記錄的ID和想刪除記錄的ID,刪除記錄以後也可以通過這個檔案複查。)

<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("data/guestbook.mdb")
exec="select * from guest"
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<html>
<head>
<title>無標題文檔</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<%
do while not rs.eof
%><tr>
<td><%=rs("id")%></td>
<td><%=rs("name")%></td>
<td><%=rs("tel")%></td>
<td><%=rs("message")%></td>
<td><%=rs("time")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
</body>
</html>

  下一節:修改記錄



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.