|
<%
mySQL="SELECT distinct CntryNameSP as CntryName, CntryID FROM Cntry WHERE RD_VC IS NOT NULL Order by CntryName ASC"
Set RS = Conn.Execute(mySQL)
If RS.EOF and RS.BOF Then
Response.Write("No records returned.")
Else
%>
<% end if
RS.Close
Conn.Close
Set RS = Nothing
Set Conn = Nothing
%>
|