Hi there,
You can use client-side JavaScript for this.
Use
parseInt(navigator.appVersion)
for example to retrieve the version number of the browser. You can either
submit this info to the ASP page that writes out a link based on this
number, or you can create the link client side.
Server-side you could parse the ServerVariables("HTTP_USER_AGENT") to find
the kind of browser somebody is using. Or use IISs build in browser
component to do some browser sniffing.
HtH
Imar
At 04:14 AM 1/29/2001 -0800, you wrote:
>I am working on a web that uses a verisign certificate. The problem is
>that on older browsers, both netscape and ie when you access the portion
>of our web that uses the certificate you get a warning that our
>certificate may have expired(it hasnt). I know that this problem has been
>around for a while. I was wondering how I can check for these older
>versions and if the user is using one, expose a link that will lead to a
>popup explaining that we are still secure????