|
Prev: http://localhost is not available without Internet connection
Next: how can i change CDONTS values to CDOSYS?
From: bobsss on 21 Mar 2008 21:43 I am building an add user website. I have several asp scripts in this website such as, query for username, create user, etc. Ideally I would like to have users logon to the website, and have these scripts execute with their individual security context. Can anyone point me in the right direction, mabe some samples somewhere. Thanks a bunch
From: "Jon Paal [MSMD]" Jon nospam Paal on 21 Mar 2008 23:58 what do you mean by, "have these scripts execute with their individual security context."
From: Anthony Jones on 22 Mar 2008 17:39 "bobsss" <q(a)a.com> wrote in message news:%23qKfy47iIHA.5956(a)TK2MSFTNGP03.phx.gbl... > I am building an add user website. I have several asp scripts in this > website such as, query for username, create user, etc. Ideally I would like > to have users logon to the website, and have these scripts execute with > their individual security context. Can anyone point me in the right > direction, mabe some samples somewhere. > Sounds like you've got some design effort to put in. How would a user login affect what they can do and see? How do you do you intend to specify what they can do and see? For example you may have many users all very similar that have identical access then a few others who have more privledged acces. In which case a role based model is indicated. OTH, each user may be reponsible for building their own content and only they have access to that content. In which case a simple userID against resources would suffice. IOW we need need to know much more about your reasons for having users logon before we can provide help. -- Anthony Jones - MVP ASP/ASP.NET
From: bobsss on 25 Mar 2008 04:43
Thanks, I'll review my design. "Anthony Jones" <Ant(a)yadayadayada.com> wrote in message news:u0s71UGjIHA.2304(a)TK2MSFTNGP05.phx.gbl... > "bobsss" <q(a)a.com> wrote in message > news:%23qKfy47iIHA.5956(a)TK2MSFTNGP03.phx.gbl... >> I am building an add user website. I have several asp scripts in this >> website such as, query for username, create user, etc. Ideally I would > like >> to have users logon to the website, and have these scripts execute with >> their individual security context. Can anyone point me in the right >> direction, mabe some samples somewhere. >> > > > Sounds like you've got some design effort to put in. How would a user > login > affect what they can do and see? How do you do you intend to specify what > they can do and see? > > For example you may have many users all very similar that have identical > access then a few others who have more privledged acces. In which case a > role based model is indicated. > > OTH, each user may be reponsible for building their own content and only > they have access to that content. In which case a simple userID against > resources would suffice. > > IOW we need need to know much more about your reasons for having users > logon > before we can provide help. > > -- > Anthony Jones - MVP ASP/ASP.NET > > |