yavsc/web/Views/Home/RestrictedArea.aspx
Paul Schneider a62cff223c Fixes
* style.css:
* style.css:
* UsersInRole.aspx: refactoring

* HomeController.cs: Fixes the restricted area error page

* PostActions.ascx: html structure

* TagControl.ascx: Tags reside in a list here, treat it as an Html one

* RestrictedArea.aspx: Shows allowed users or/and roles in the error
  page

* Web.csproj: cleaning
2015-11-18 00:30:07 +01:00

11 lines
No EOL
559 B
Text

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<BlogEntryCollection>" MasterPageFile="~/Models/App.master"%>
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
Ce contenu est d'accès restreint :<br>
&lt;<%= Html.Encode(ViewData["ControllerName"]) %>/<%= Html.Encode(ViewData["ActionName"]) %>&gt;<br>
Ci après les tièrces parties autorisée actuellement :<br>
Roles autorisés :<%= Html.Encode(ViewData["Roles"]) %><br>
Utilisateurs autorisés :<%= Html.Encode(ViewData["Users"]) %><br>
</asp:Content>