How can I make USA appear as the default country in the Country list?
A:
<%
Set XCheck=Server.CreateObject("SMUM.XCheck.1")
%>
<SELECT NAME="Country">
<OPTION SELECTED>U.S.A.
<%
For Each Country in XCheck.Countries
If (Country<>"U.S.A.") Then
%>
<OPTION><%=Country%>
<%
End If
Next
%>
</SELECT>
Here is a COM tutorial written for Active Server Programmers. This tutorial will increase your understanding of COM fundementals so that you can use other components to expand your Active Server page applicatons.[Read The Tutorial]