How to determine which web method...

janilane

Active member
Joined
Jan 23, 2008
Messages
30
Programming Experience
Beginner
is called in a given list?

Let's say I have 5 web methods, how do I check which one is clicked, using a Select Case statement?

Thanks
 
Web method is the same as any other method, it's called only when you deliberately call it. Just like you call MyCode.DoSomething you also call My.WebServices.MethodName, or however you call the method from your proxy.
 
thanks, but...

in WROX book, there are a number of methods listed, and the author used a SELECT CASE statement to determine which method was triggered. Do you have any idea how to determine which one from the list of methods was clicked by the user? Thanks
 
Back
Top