client side browser information

  • Thread starter Thread starter Tabo
  • Start date Start date
T

Tabo

How can i get the information of client side browser, such
as browser history, for displaying on the web page? And,
can i update or insert a new history to the browser? if
yes, how can i do that by using ASP .NET?
Thanks for your help!

Tabo
 
You can get a lot of info from each request the browser sends. (Browser,
Version) etc. But not the history - that's firmly in the client domain.

It is possible to access history from javascript, however, so you could
always build a form on the client and then post it.
 
Back
Top