I changed it back to
<%@ Import
Namespace="AssistedSolutions.WebControls.CityStateFinder" %>
It looks like its finding the dll now but I am getting a
different error
BC30456:
'SearchOn' is not a member of 'CityStateFinder'.
and here is the source I am using in my aspx page
<%@ Import Namespace="System.Web.UI" %>
<%@ Import Namespace="AssistedSolutions.WebControls.CityStateFinder" %>
<script language="VB" runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
Dim i as integer
Dim locations() as CityStateLocations
locations = CityStateFinder.SearchOn("28412")
For i = 0 To locations.length - 1
response.write(locations(i).StateName)
Next
end sub
</script>