Website restrictions

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.
 
A

Alexey Smirnov

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;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top