I am developing an ASP.Net website. In this website Admin can edit the content of few page on-line. Kindly help me how can i do this?
editable content of an asp.net page
Collapse
X
-
Well your first step would be to research the topic of Authentication and Authorization. There are lots of ways to authenticate a user, but if you use Forms Authentication with Role Management it will help you determine if the user is an "admin".
From there you can determine if the logged in user is an administrator and give permissions to the user to edit content.
This is a large topic and will take a while to research.
Make sure you pick the authentication type that is best for your specific application's needs.
Comment