
* 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:
15 lines
468 B
Plaintext
15 lines
468 B
Plaintext
<%@ Page Title="Ajout d'un role" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master" %>
|
|
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
|
|
|
<%= Html.ValidationSummary() %>
|
|
<% using(Html.BeginForm("DoAddRole","Admin"))
|
|
{ %>
|
|
Nom du rôle :
|
|
<%= Html.TextBox( "RoleName" ) %>
|
|
<%= Html.ValidationMessage("RoleName", "*") %><br/>
|
|
<input class="actionlink" type="submit"/>
|
|
<% } %>
|
|
</asp:Content>
|
|
|
|
|