I have the login form that is currently being used to log in, but I need to do this authentication also when I click on a particular menu item. I need that when clicking "Home", ask for this authentication again, and if the user has permission, enter if not not. How do I do this?
MasterPage:
<asp:Menu ID="Menu" runat="server" style="margin-bottom: 0" BackColor="White"
DynamicHorizontalOffset="2" Font-Names="Arial" Font-Overline="False"
Font-Size="Medium" Font-Strikeout="False" Font-Underline="False"
ForeColor="#7C6F57" StaticSubMenuIndent="10px" RenderingMode="List" OnMenuItemDataBound="NavigationMenu_MenuItemDataBound">
<DynamicHoverStyle BackColor="#B2223D" ForeColor="White" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="5px" ForeColor="White" />
<DynamicMenuStyle BackColor="#5D7B9D" ForeColor="White" />
<DynamicSelectedStyle BackColor="#FF0066" ForeColor="White"/>
<Items>
asp:MenuItem NavigateUrl="~/Index.aspx" Text="Home" Value="Home"></asp:MenuItem>
</Items>
<StaticHoverStyle BackColor="#68655C" ForeColor="White" />
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="5px" />
<StaticSelectedStyle BackColor="#B2223D" ForeColor="White" />
</asp:Menu>