Ask a Question related to ASP.NET General, Design and Development.
-
abdulrauf #1
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
-
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... -
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... -
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... -
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... -
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:... -
Eric Wise #2
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



Reply With Quote

