Creating an audit trail

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Creating an audit trail

    Hello All,

    I have a form in an intranet environment and I'm wondering how I can create an
    audit trail. The information I want to track is listed below. Please let me
    know how i can perform this task. Any advice would be greatly appreciated.
    Thanks.

    - UserID of the person who submitted the form
    - The time the form was submitted

    Operating System: Windows 2000
    Language: ASP
    Database: SQL Server


    Mike1500 Guest

  2. Similar Questions and Discussions

    1. audit trail
      Hi, I'm building an audit trail for a web app using MS-Access. The way I'm doing it now is by adding fields like 'LastUpdated', 'UpdatedBy',...
    2. Breadcrumb trail and creating includes
      HI I have a website where my breadcrumb trail uses PHP includes to resuse links. How can I enable Contribute users to have the ability to edit...
    3. coldfusion 5.0 trail
      Hi, please help me find where can i get the Coldfusion Server 5.0 Free Evaluation version. Thanks, RajyaLakshmi.
    4. Dragging trail
      Hello, I know this is probably something very basic, but in previous versions if you were dragging text for precise placement, your text would...
    5. creating procedure for audit table
      Thank's Jonathan, I just sorry for my late reply, i just back from my summer vacation. Honestly, i not so good with informix procedure. Maybe you...
  3. #2

    Default Re: Creating an audit trail

    You do not mention if the users are logged in and if so how they are logged in.

    If you yours log in first, then you can simply add a hidden field and assign
    the UserID from your recordset, filtered on the login username.

    Regarding the time, simply set the Date/Time column in SQL server to have the
    default value of getdate() and the database will do this for you.

    If you can let us know the way your users are logging in we should be able to
    give you more information regarding the UserID.


    Originally posted by: Mike1500
    Hello All,

    I have a form in an intranet environment and I'm wondering how I can create an
    audit trail. The information I want to track is listed below. Please let me
    know how i can perform this task. Any advice would be greatly appreciated.
    Thanks.

    - UserID of the person who submitted the form
    - The time the form was submitted

    Operating System: Windows 2000
    Language: ASP
    Database: SQL Server




    CarlGrint Guest

  4. #3

    Default Re: Creating an audit trail

    Thanks for the quick response CarlGrint, the users will be logged in via
    Windows Authentication. The way the form is now anyone could view submit an
    entry, which I would like to change if possible. Thanks.

    Mike1500 Guest

  5. #4

    Default Re: Creating an audit trail

    Thanks for the quick response CarlGrint, the users will be logged in via
    Windows Authentication. The way the form is now anyone could view submit an
    entry, which I would like to change if possible. Thanks.

    Mike1500 Guest

  6. #5

    Default Re: Creating an audit trail

    If they log in via Windows auth, then you are only at the best going to be able
    to grab the username they have logged in as, no ID number wise.

    I believe their is a way to grab this, if you search this forum I have seen a
    number of question and answer on this subject.

    Originally posted by: Mike1500
    Thanks for the quick response CarlGrint, the users will be logged in via
    Windows Authentication. The way the form is now anyone could view submit an
    entry, which I would like to change if possible. Thanks.



    CarlGrint Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139