Can you give me an example of webservice that I can load to my web that I
can experiment with?
Or perhaps if I'm more specific you can point me in the right direction:
From my app, I'd like to call
www.example.com/auth.aspx?lic=234234&user=134123
and have that aspx page do a DB lookup to verify that the license on the
user's machine is current.
Do you think a web service is better for this?
Thanks.
"Brendan Grant" <(E-Mail Removed)> wrote in message
news:069701c52f00$26add880$(E-Mail Removed)...
You'd be better off if you put called a web service
instead of a web page.
With a webpage you will have to grab the entire page and
parse it, while with a web service you can return only
those values you want.
>-----Original Message-----
>Hi,
>
>I need to make a call from my C# application to an
ASP.NET web page and pass
>some parameters to it and receive back a return value.
>
>Anybody know what the class/function name is in C# to do
this?
>
>I'm looking for something like:
>string xxx = "http://www.myweb.com/test.aspx?
param1=aaaśm2=bbb";
>int result = GetWebResult(xxx);
>
>Thanks
>
>
>.
>