Files
2018-05-16 12:34:54 +02:00

22 lines
1.0 KiB
Plaintext

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="User.aspx.cs" Inherits="PUB.User" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<div class="jumbotron p-2 my-1">
<div class="container">
<h2>Selezione utente</h2>
</div>
</div>
<div class="container my-1 bg-light">
<asp:RadioButtonList runat="server" ID="rblRole" AutoPostBack="true" RepeatDirection="Horizontal" OnSelectedIndexChanged="rblRole_SelectedIndexChanged">
<asp:ListItem class="btn btn-info" Value="condomini.it">Condomini.it</asp:ListItem>
<asp:ListItem class="btn btn-danger" Value="amministratore">Amministratore</asp:ListItem>
<asp:ListItem class="btn btn-warning" Value="azienda">Azienda</asp:ListItem>
<asp:ListItem class="btn btn-primary" Value="condominio">Condominio</asp:ListItem>
</asp:RadioButtonList>
<p>
Ruolo selezionato: <b>
<asp:Label runat="server" ID="lblRuolo"><%: UserRole %></asp:Label></b>
</p>
</div>
</asp:Content>