Skip to content

Instantly share code, notes, and snippets.

@ChrisMoney
Last active September 15, 2015 19:44
Show Gist options
  • Save ChrisMoney/9e47774752ca062247c4 to your computer and use it in GitHub Desktop.
Save ChrisMoney/9e47774752ca062247c4 to your computer and use it in GitHub Desktop.
Web Service - VB.NET
'Syntax for VB
'<System.Web.Script.Services.ScriptMethod()>
'<System.Web.Services.WebMethod()>
[WebMethod]
[ScriptMethod(UseHttpGet=true)]
public string MyNiftyMethod(int myint)
{
// ... code here
}
// Web Config
<system.web>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost" />
</protocols>
http://mysite.com/Service.asmx/MyNiftyMethod?myint=12345
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment