Source code of a BBS (V)

Source: Internet
Author: User
'================================================ ========================================================== ==============================
Case "Modify"
'================================================ ========================================================== ==============================
'Modify the article
Which = Request ("Which ")
WhichID = GetID (Which)
If Left (Which, 1) = "E" Then Table = "bbs" Else Table = "bbsreply"
WrongMsg = ""
If Request ("Modify") = "Yes" Then
Userid = Request ("Userid ")
Password = Request ("Password ")
Title = Trim (Request ("Title "))
Content = RTrim (Request ("Content "))
If Title = "" Then WrongMsg = WrongMsg + "<DD> <LI> the question cannot be blank. </LI>"
If Content = "" Then WrongMsg = WrongMsg + "<DD> <LI> the Content cannot be blank. </LI>"
If WrongMsg = "" Then
RecBBS. Open "SELECT [author] FROM" & Table & "WHERE [serial number] =" & WhichID, Con, 1
If RecBBS. Fields ("author") = Userid Then
SQL = "SELECT COUNT (*) FROM bbsmember WHERE [account] = '" & SqlStr (Userid) & "' AND [Password] = '" & SqlStr (Password) &"'"
RecMember. Open SQL, Con, 1
If RecMember. Fields (0)> 0 Then
SQL = "UPDATE" & Table & "SET [question] = '" & SqlStr (Title) & "', [Content] = '" & SqlStr (Content) & "'Where [serial number] =" & WhichID
Con. Execute (SQL)
Else
WrongMsg = "<DD> <LI> The password is incorrect. </LI>"
End If
RecMember. Close
Else
WrongMsg = "<DD> <LI> the user name is incorrect. </LI>"
End If
RecBBS. Close
End If
End If
Title = ""
Content = ""
SQL = "SELECT [question], [content] FROM" & Table & "WHERE [serial number] =" & WhichID
RecBBS. Open SQL, Con, 1
If Not RecBBS. EOF Then

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.