Hello

Are there some namespace in the framework which one I can take information of the client's Browser? (developing with ASP.NET

Example
If the client has my URL in his Restricted Site, in his security's Internet Options, Are there some manner for knowing it?

Some online article

Thanks in advance!

l-touched

Re: Getting Client's Browser information. by Jan

Jan
Thu Dec 18 15:50:30 CST 2003

You can check out the server variables. For example take a look at following
article:
http://www.codeproject.com/useritems/request_server_variables.asp

--
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan
"l-touched" <anonymous@discussions.microsoft.com> schreef in bericht
news:182D3FC1-B6B6-4293-B972-9D990DBFEDB4@microsoft.com...
> Hello,
>
> Are there some namespace in the framework which one I can take information
of the client's Browser? (developing with ASP.NET)
>
> Example:
> If the client has my URL in his Restricted Site, in his security's
Internet Options, Are there some manner for knowing it?.
>
> Some online article?
>
> Thanks in advance!,
>
> l-touched



Re: Getting Client's Browser information. by Scott

Scott
Thu Dec 18 16:14:19 CST 2003

You wouldn't be able to get the information about restricted sites from the
ServerVariables collection. This collection is primarially made up of
SERVER environmental information. While SOME data about the client is in
there, restricted sites is not.

I don't think that information can be assertained by a server-side program.


"Jan Tielens" <jan@no.spam.please.leadit.be> wrote in message
news:%23ZAS2DbxDHA.2676@tk2msftngp13.phx.gbl...
> You can check out the server variables. For example take a look at
following
> article:
> http://www.codeproject.com/useritems/request_server_variables.asp
>
> --
> Greetz,
> Jan
> __________________________________
> Read my weblog: http://weblogs.asp.net/jan
> "l-touched" <anonymous@discussions.microsoft.com> schreef in bericht
> news:182D3FC1-B6B6-4293-B972-9D990DBFEDB4@microsoft.com...
> > Hello,
> >
> > Are there some namespace in the framework which one I can take
information
> of the client's Browser? (developing with ASP.NET)
> >
> > Example:
> > If the client has my URL in his Restricted Site, in his security's
> Internet Options, Are there some manner for knowing it?.
> >
> > Some online article?
> >
> > Thanks in advance!,
> >
> > l-touched
>
>
>



Re: Getting Client's Browser information. by Peter

Peter
Thu Dec 18 16:23:06 CST 2003

> You wouldn't be able to get the information about restricted sites from
the
> ServerVariables collection. This collection is primarially made up of
> SERVER environmental information. While SOME data about the client is in
> there, restricted sites is not.

Like querying the browser's history, I would be surprised if such is
possible as it is a privacy issue.
The one solution that *may* work is to create a trusted ActiveX component -
that's assuming IE provides an API to poll such information.
I'm too lazy to check, but I'd bet a nickel and two pennies there's no
published API for that as again it is a security issue.
--
Peter O'Reilly



Re: Getting Client's Browser information. by anonymous

anonymous
Fri Dec 19 07:46:10 CST 2003

Hi

I was thinking the same solution (ActiveX), but always is my last option. I will research about it, and if I get positive results, I will write about

Regards

l-touche

----- Peter O'Reilly wrote: ----

> You wouldn't be able to get the information about restricted sites fro
th
> ServerVariables collection. This collection is primarially made up o
> SERVER environmental information. While SOME data about the client is i
> there, restricted sites is not

Like querying the browser's history, I would be surprised if such i
possible as it is a privacy issue
The one solution that *may* work is to create a trusted ActiveX component
that's assuming IE provides an API to poll such information
I'm too lazy to check, but I'd bet a nickel and two pennies there's n
published API for that as again it is a security issue
--
Peter O'Reill