%@ LANGUAGE = VBScript%><%Option Explicit Dim SourceDir, fso, Indent, nl, SrcDrLen, tmp, TitleFile, Title,oConn,oRs,filePath nl=vbCrLf Indent=0 Const ForReading = 1 SourceDir=Server.MapPath("./") Set fso = CreateObject("Scripting.FileSystemObject") Set SourceDir = fso.GetFolder(SourceDir) SrcDrLen=Len(SourceDir.Path)+2 ' Create ADO Connection Component to connect filePath = Server.MapPath("Adm_ThuyetPhapTestDB.mdb") Set oConn = Server.CreateObject("ADODB.Connection") oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & filePath %>
" & oRs("Title") & " (" & oRs("UniqueId") & ") - " & _
oRs("Author") & "" & " - " & oRs("Path") & "
" & chr(13) & "[Sửa Đổi][Xóa] Nơi: " & oRs("Location") & " | Ngày: " & _
oRs("Date") & " | Nguồn: " & oRs("Source") & " | " & "Ghi chú: " & oRs("Note") & " | " & "UniqueID: " & oRs("UniqueID") & _
" | DatePosted: " & oRs("DatePosted") & " | Category: " & oRs("Category") & "
" & chr(13) & "Memo: " & oRs("Memo") & chr(13)
oRs.MoveNext
Loop
End Sub'=======================================================
%>