Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Cannot update. Database or object is read-only.
/chap13/register2.asp, line 23
<!--#include file="header.asp" -->
<%
Set conn=Server.CreateObject("ADODB.Connection")
Conn.Open "customer","",""
sql ="Select * From customer where Username='"&Request.Form("Username")&"'"
Set RS =Server.CreateObject("ADODB.Recordset")
RS.open Sql,Conn,1,3
if NOT(RS.EOF) then
Conn.Close
response.write("à¾ÔèÁ¢éÍÁÙÅàÃÕºÃéÍÂáÅéÇ")
end if
%>