Hi all
I have a website,in which 2 types of users are there..say clients and users
clients have a login (clientlogin.aspx) page and set of other pages they need to process also users also have
a login page(userlogin.aspx) and set of pages they need to work..
I don't have much knowledge in doing authentication and authorization for websites .So whats the best approach
i can do to authorization in this scenario..Clients should not process any pages without login ,users also
<authentication mode="Forms">
<forms name="login" loginUrl="userlogin.aspx)" protection="All" path="/" timeout="30"/>
</authentication>
<authorization>
<deny users ="?" />
<allow users = "*" />
</authorization>
i have tried something like this,but it will work only for users..
Thanks