Sample aPplication using Skype API

Sample aPplication using Skype API

am 19.12.2006 07:04:37 von G

Hello,

I want to a develop a small application using Skype API using ASP.
I want to know the user who is in online in my website.
please give a pieace of code

Thanks in Advance.
Bye
G

Re: Sample aPplication using Skype API

am 19.12.2006 10:26:17 von Anthony Jones

"G" wrote in message
news:uSxpOOzIHHA.3668@TK2MSFTNGP02.phx.gbl...
> Hello,
>
> I want to a develop a small application using Skype API using ASP.
> I want to know the user who is in online in my website.
> please give a pieace of code
>

Typically users access websites anonymously so there is no information about
the user available. The closest you can get is
Request.ServerVariable("REMOTE_ADDR") which gives the IP address of client
making the request. However this could well be a NATing router rather than
the actual client.

If anonymous access is disabled then the users will have needed to logon in
some way. In this case a user name will a be availalbe as the server
variable REMOTE_USER.