
* Web.csproj: * Edit.aspx: * MyClass.cs: * Restore.aspx: * SalesCatalog.csproj: * RemoveUserQuery.aspx: * RemoveRoleQuery.aspx: * AssemblyInfo.cs: * fortune.csproj: a test plugin * App.master: The site name as suffix in titles * AddRole.aspx: Form action fixed * CreateBackup.aspx:
18 lines
648 B
Plaintext
18 lines
648 B
Plaintext
<%@ Page Title="User removal" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master" %>
|
|
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
|
<div>
|
|
<%= Html.ValidationSummary() %>
|
|
<% using ( Html.BeginForm("RemoveRole","Admin") ) { %>
|
|
Supprimer le rôle
|
|
<%= Html.Encode( ViewData["roletoremove"] ) %> ?
|
|
<br/>
|
|
<input type="hidden" name="rolename" value="<%=ViewData["roletoremove"]%>"/>
|
|
<input class="actionlink" type="submit" name="submitbutton" value="Supprimer"/>
|
|
<input class="actionlink" type="submit" name="submitbutton" value="Annuler" />
|
|
<% } %>
|
|
</div>
|
|
|
|
</asp:Content>
|
|
|
|
|