12 lines
294 B
Plaintext
12 lines
294 B
Plaintext
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
|
|
|
|
<%= Html.ValidationSummary() %>
|
|
<% using(Ajax.BeginForm())
|
|
{ %>
|
|
Nom du rôle :
|
|
<%= Html.TextBox( "RoleName" ) %>
|
|
<%= Html.ValidationMessage("RoleName", "*") %><br/>
|
|
<input class="actionlink" type="submit"/>
|
|
<% } %>
|
|
|