From: Jason Barnett on 11 Jan 2010 17:38 Is there a way to retrieve a unique identifier for a client browser instance, from within an ASP.NET page? I would like to identify a specific browser on a specific machine. I can determine the machine's IP address, but I don't know how to retrieve a unique browser ID (i.e. PID).
From: Scott M. on 11 Jan 2010 17:48 There is no such ID to obtain. -Scott "Jason Barnett" <JasonBarnett(a)discussions.microsoft.com> wrote in message news:1FC2EBB0-86DF-4C98-82B8-7E9AD698F43E(a)microsoft.com... > Is there a way to retrieve a unique identifier for a client browser > instance, > from within an ASP.NET page? > > I would like to identify a specific browser on a specific machine. I can > determine the machine's IP address, but I don't know how to retrieve a > unique > browser ID (i.e. PID).
From: Mark Rae [MVP] on 11 Jan 2010 20:26 "Jason Barnett" <JasonBarnett(a)discussions.microsoft.com> wrote in message news:1FC2EBB0-86DF-4C98-82B8-7E9AD698F43E(a)microsoft.com... > Is there a way to retrieve a unique identifier for a client browser > instance, > from within an ASP.NET page? No. -- Mark Rae ASP.NET MVP http://www.markrae.net
From: Miro on 12 Jan 2010 11:47 I beleive the closest you can get is just get the Session - and that is browser specific, but not window specific ( within the browser ) M. "Jason Barnett" <JasonBarnett(a)discussions.microsoft.com> wrote in message news:1FC2EBB0-86DF-4C98-82B8-7E9AD698F43E(a)microsoft.com... > Is there a way to retrieve a unique identifier for a client browser > instance, > from within an ASP.NET page? > > I would like to identify a specific browser on a specific machine. I can > determine the machine's IP address, but I don't know how to retrieve a > unique > browser ID (i.e. PID).
From: Scott M. on 12 Jan 2010 12:24 "Miro" <miro(a)beero.com> wrote in message news:O1uN%23b6kKHA.3476(a)TK2MSFTNGP06.phx.gbl... >I beleive the closest you can get is just get the Session - and that is >browser specific, > but not window specific ( within the browser ) > > M. Actually, session ID's are issued by the server, and so, they are not browser-specific. In fact, they have more to do with the browser window than they do with the browser application, since one session cannot span multiple browser windows, but one browser could have many sessions going simultaneously. -Scott
|
Next
|
Last
Pages: 1 2 3 Prev: ReportView + SQLDataSource (dinamically defined) Next: Auto Refresh gridview |