As the title states, I'm trying to call a web service written in ASP.Net (Same solution, but different project in visual studio) from javascript. Since I added the web reference for the service prior to this for calling it in VB.Net, I tried to use this reference by directly calling it.
In the body of the Default.aspx page, I have this code:
<asp:ScriptManager id="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="~/App_WebReferences/localhost/ServiceName.discomap" InlineScript="true" />
</Services>
</asp:ScriptManager>
but in javascript, I can't call my service at all. Could anyone explain me how? I'd want to do something like this:
<script type="text/javascript">
alert(ServiceName.HelloWorld())
</script>