I used .net 4.5 framework website template to generate a website and modify the SiteMaster page to include a modal pop up for log in. In the website, there is a folder which keeps all pages that require log in to access. A web.config is located in that
folder too.
<?xml version="1.0"?>
<configuration>
<system.web>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</configuration>
Question: how do I redirect to the modal pop when accessing the pages in that folder? Meanwhile it redirect me to the log in page in Account folder and the log in page doesn't work anymore after I changed the log in function to modal pop up in Site.Master.
I googled and can't find any blog which gives a more detailed discussion about it.
Go to the complete details ...