Added one asmx web reference and I am trying to call the value.
Service added successfully/. How to call that function?
Trying to call below but getting erro
ReferenceError: country is not defined
Dim geoService As New WebServiceDNNUser.WebServiceDNNUserSoapClient
Dim country As String = geoService.GetUsername()
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="WebServiceDNNUserSoap" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://................/WebServiceDNNUser.asmx"
binding="basicHttpBinding" bindingConfiguration="WebServiceDNNUserSoap"
contract="WebServiceDNNUser.WebServiceDNNUserSoap& ...
Go to the complete details ...