pboy
Member
سلام من از توي يك كتاب آموزش ASP یک صفحه درست کردم که اطلاعات بانک اطلاعاتی رو نشون می ده. بار اول کار کرد ولی دوباره که ریفرش کردم دیگه نشون نداد!!!!
این هم کدش
یکی می تونه به من کمك كنه
راستی کد واسه درج یا پاک کردن رکورد ها چیه؟؟؟؟
یکی می تونه توضیح بده؟؟؟
ممنون
این هم کدش
کد:
<% Option explicit%>
<!--#include virtual="adovbs.inc"-->
<HTML>
<body>
<%
dim objconn
set objconn = server.createobject("adodb.connection")
objconn.connectionstring= "DRIVER={Microsoft Access Driver (*.mdb)};" & "DBQ=C:\Inetpub\wwwroot\db1.mdb"
ObjConn.Open
dim objrs
set objrs = server.createObject("ADODB.Recordset")
ObjConn.Open "Friends", Objconn, , adCmdTable
%>
<table align="center" border=1>
<tr>
<td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">ID</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Nick name</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Name</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Family</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Address</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Phone</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Fax</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Mobile</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Birthdate</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">E-mail</font></td><td>
<p align="center"><b><font face="Tahoma" style="font-size: 8pt">Home page</font></td>
</TR>
<%
Do while Not objrs.EOF
Response.write "<TR><TD><B>" & objrs("ID") & "</B><BR></TD>"
Response.write "<TD>" & objRS("nickname") & "<BR></TD>"
Response.write "<TD>" & objRS("name") & "<BR></TD>"
Response.write "<TD>" & objRS("fname") & "<BR></TD>"
Response.write "<TD>" & objRS("address") & "<BR></TD>"
Response.write "<TD>" & objRS("Phone") & "<BR></TD>"
Response.write "<TD>" & objRS("Fax") & "<bR></TD>"
Response.write "<TD>" & objRS("Mobile") & "<BR></TD>"
Response.write "<TD>" & objRS("Birthdate") & "<bR></TD>"
Response.write "<TD>" & objRS("email") & "<BR></TD>"
Response.write "<TD>" & objRS("homepage") & "<BR></TD></tr>"
'Move to the next ro, in the friends table
objrs.movenext
loop
objrs.close
set objrs = nothing
objconn.close
set objconn = nothing
%>
</body>
</html>
راستی کد واسه درج یا پاک کردن رکورد ها چیه؟؟؟؟
یکی می تونه توضیح بده؟؟؟
ممنون