securing pages and forms from users

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default securing pages and forms from users

    Hope someone can help.

    I am trying to build an application that will allow a
    user to access/deny an application, the application's
    individual pages, and the forms within the individual
    pages.

    For example once a user log's in the application will
    check whether the user can access the application's main
    page. If so it lets him/her see the page.

    Now once the user clicks on any link on the main page the
    application will check whether the user has read only, or
    read write access to the page he wanted to see. (Read
    write meaning they can write into the form fields in that
    page, and read only meaning they can only view the form)

    The next level of security I want to implement is whether
    the user has read only, or read write permission on The
    individual fields (textboxes) in that form. So a user
    might have access to the application main page, the
    individual page, the form but not to two textboxes on the
    form. For example in one form I may contain the person's
    name and his salary. I want to allow him to update his
    name but not his salary.

    If anyone can give advice on how to implement this it
    would be much appreciated.

    Thank you,
    Abdulrauf
    abdulrauf Guest

  2. Similar Questions and Discussions

    1. Can edit pages, but can't see users
      Hoping that someone else has had this problem and knows a fix... Just got a new SuSE server and I'm setting up my website. I have connected to...
    2. Users cannot save Acrobat forms
      Thanks--how is this done? 500 respondents would be more than enough. The form is only to be used on a case-by-case basis...
    3. Forms: How do users know which field they are in?
      MarkATS, Thanks, we did use Javascript to highlight each field. Our form is here: <http://www.innovativesigns.com/InnovativeLRF106.pdf> Each...
    4. securing directories with role-based forms authentication
      I have an ASP.NET application that uses forms authentication. I rolled my own CustomPrincipal class for role-based authentication, and wired the...
    5. Securing the sequence of pages
      Suppose we want this sequence: file1.php -> file2.php -> file3.php in the start of the file file1.php put:...
  3. #2

    Default Re: securing pages and forms from users

    [url]http://www.microsoft.com/italy/net/business/netarchitect/SecNet.pdf[/url]

    There is a good example of how to set up an encrypted cookie that sets
    application roles at log in (Forms Authentication). I have implemented this
    solution myself, a user logs into my site, based on their login tag it goes
    to a specific sql server database (connect string in config file), and based
    on the read write permissions it finds there it assigns roles.

    "abdulrauf" <rshetty@amideast.org> wrote in message
    news:0b0c01c35768$6d7d0130$a601280a@phx.gbl...
    > Hope someone can help.
    >
    > I am trying to build an application that will allow a
    > user to access/deny an application, the application's
    > individual pages, and the forms within the individual
    > pages.
    >
    > For example once a user log's in the application will
    > check whether the user can access the application's main
    > page. If so it lets him/her see the page.
    >
    > Now once the user clicks on any link on the main page the
    > application will check whether the user has read only, or
    > read write access to the page he wanted to see. (Read
    > write meaning they can write into the form fields in that
    > page, and read only meaning they can only view the form)
    >
    > The next level of security I want to implement is whether
    > the user has read only, or read write permission on The
    > individual fields (textboxes) in that form. So a user
    > might have access to the application main page, the
    > individual page, the form but not to two textboxes on the
    > form. For example in one form I may contain the person's
    > name and his salary. I want to allow him to update his
    > name but not his salary.
    >
    > If anyone can give advice on how to implement this it
    > would be much appreciated.
    >
    > Thank you,
    > Abdulrauf

    Eric Wise 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