ASP help
ASP help
Out of context: Reply #1
- Started
- Last post
- 10 Responses
- stewart0
this is the script in document http://www.vahk.nl/forum/aspBoar⦠and i really want to know what URL i have to fill in to change the content / delete messages in the messageboard.
anyone?
If Request.QueryString("delId")"" And Request.QueryString("pwd") = abAdminPwd Then
strSql = "DELETE * FROM msgDetail WHERE msgId = " & Request.QueryString("delId")
Call adoConn.Execute(strSql)
Response.Redirect "aspBoard.asp"
End IfstrSql="SELECT * FROM msgDetail WHERE msgId = " & Request.QueryString("Id")
Set adoRs=Server.CreateObject("ADODB...
adoRS.Open strSql, adoConn, 1If adoRs.EOF Then
Response.Redirect "aspBoard.asp"
End If
%>