ASP编程入门进阶(二十):ADO组件之修改数据记

网络编程 2025-03-24 07:17www.168986.cn编程入门

以“showit.asp”文件为例,它主要承担显示功能。针对具体的某条记录,我们增加了跳转到修改页面的超链接。这一功能的实现依赖于循环读取当前页的记录,并为每条记录生成一个独特的修改链接。每条记录的详细信息,如标题、作者、加入时间和内容,都会被清晰地展示出来。值得注意的是,这些展示的信息中,“修改”链接的参数id是动态的,它将根据当前记录的内容动态生成。接下来的工作,就交给“chang.asp”页面去完成了。

change.asp

```html

<%

' 获取表单提交的数据

If Request.Form("submit") = "change" Then

whatTitle = Request.Form("title")

whoAuthor = Request.Form("author")

whatContent = Request.Form("content")

id = Request.Form("id")

' 更新数据库中的文章信息

Set rs = Server.CreateObject("ADODB.Recordset")

sql = "UPDATE article SET _title='" & whatTitle & "', _author='" & whoAuthor & "', _content='" & whatContent & "' WHERE _id=" & id

conn.Execute(sql)

rs.Close

Set rs = Nothing

conn.Close

Set conn = Nothing

Response.Redirect("showit.asp")

Response.End

End If

' 显示文章信息表单

If Not id = "" Then

Set rs = Server.CreateObject("ADODB.Recordset")

sql = "SELECT FROM article WHERE _id=" & id

rs.Open sql, conn, 1, 1

whatTitle = rs("_title")

whoAuthor = rs("_author")

whatContent = rs("_content")

End If %>

Title:

Author:

Content:


```

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by