Website restrictions

  • Thread starter Thread starter ciccone1978
  • Start date Start date
C

ciccone1978

Hello everybody,
I'm working on a website using asp.net/iis
and this site will be published only on my company's intranet.

Now I want that only a subset of the intranet users can have access to
the site in read mode
(that is to view data only)
and I want also that another subset of company users can access in
write mode
(that is view and modify data).

How can I do that??
Some ideas?

P.S.
About the website, I have the main page where users can query data and
in the same page a link
to another page where users can insert/update data.

Thanks in advance.

ByeBye.
 
Hello everybody,
I'm working on a website using asp.net/iis
and this site will be published only on my company's intranet.

Now I want that only a subset of the intranet users can have access to
the site in read mode
(that is to view data only)
and I want also that another subset of company users can access in
write mode
(that is view and modify data).

How can I do that??
Some ideas?

P.S.
About the website, I have the main page where users can query data and
in the same page a link
to another page where users can insert/update data.

Thanks in advance.

ByeBye.

Use Windows Authentication
http://www.google.com/search?hl=en&q=windows+authentication+asp.net

Assing users who can write to a specific Active Directory group

Check in the code

if (User.IsInRole("domain\group")) {
EditButton.visible = true;
}
 
Back
Top