Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Displaying Brower Version, NTUser etc on a webpage in HTML

Options
  • 13-03-2002 7:23pm
    #1
    Registered Users Posts: 2,894 ✭✭✭


    Right, I've got a webpage which I want to create in HTML, no javascript, just HTML. I want to be able to display the browser version, NTUsername etc that the user is using when he hits the site using the following variables:

    <input type="hidden" name="NTUserID" value="<%REMOTE_USER%>">
    <input type="hidden" name="BROWSER" value="<%HTTP_USER_AGENT%>">
    <input type="hidden" name="OS" value="<%HTTP_US_OS%>">

    What is the syntax to display the %REMOTE_USER%, ="<%HTTP_USER_AGENT%, <%HTTP_US_OS% variables ?

    I will ultimately need to pass these variables on to another page.

    Any help would be much appreciated.

    Cheers,
    TC


Comments

  • Registered Users Posts: 1,481 ✭✭✭satchmo


    You can't do that in straight HTML; you'll have to use at least Javascript, or preferably some CGI script.


Advertisement