<%
' Title Image
If strImg_Title <> "" Then
Response.Write "
"
Response.Write "
"
End If
%>
<%
' ¿ÍÀÎÇùÂù List ---------------------------------------------------------------------------------------
If blnResult Then
Response.Write "
"
Dim strCompany, strTel, strProduct
Do While Not objRs.Eof
strCompany = ChgTextMode(objRs("strCompany"),False)
strTel = ChgTextMode(objRs("strTel"),False)
strProduct = objRs("strProduct")
Response.Write "
" & strCompany & "
"
Response.Write "
" & strProduct & "
"
Response.Write "
" & strTel & "
"
objRs.MoveNext
Loop
Response.Write "
"
End If
' ¿ÍÀÎÇùÂù List End ---------------------------------------------------------------------------------------
%>
<%
objRs.Close
Set objRs = Nothing
Call DBClose()
%>