Files
2018-05-28 19:34:03 +02:00

15 lines
1.0 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_listUserAK.ascx.cs" Inherits="MoonProTablet.WebUserControls.mod_listUserAK" %>
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False" DataKeyNames="MatrOpr" DataSourceID="ods">
<Columns>
<asp:BoundField DataField="MatrOpr" HeaderText="MatrOpr" ReadOnly="True" SortExpression="MatrOpr" />
<asp:BoundField DataField="Cognome" HeaderText="Cognome" SortExpression="Cognome" />
<asp:BoundField DataField="Nome" HeaderText="Nome" SortExpression="Nome" />
<asp:TemplateField HeaderText="authKey" SortExpression="authKey">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# encodeAuthKey(Eval("authKey")) %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="MapoDb.DS_applicazioneTableAdapters.AnagraficaOperatoriTableAdapter"></asp:ObjectDataSource>