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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Displaying Brower Version, NTUser etc on a webpage in HTML

  • 13-03-2002 6:23pm
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 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