If I already created a login form for users and I want to create a windows form with windows form authentication for myself as the owner of the website. If I use this line of code in the web.config file, will it affect all the forms in my website?
Because I want to have access to specific details page on my website but only I will be able to access the page where I can be able to write and add articles, and edit articles as well for users to see
<authentication mode="Forms">
<forms name=".ASPXFORMSDEMO" loginUrl="logon.aspx"
protection="All" path="/" timeout="30" />
</authentication>
<authorization>
<deny users ="?" />
<allow users = "*" />
</authorization>