23 lines
1.2 KiB
Plaintext
23 lines
1.2 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_dichiarazione.ascx.cs" Inherits="MoonProTablet.WebUserControls.mod_dichiarazione" %>
|
|
<div class="ui-grid-solo">
|
|
<asp:Label runat="server" ID="lblOut" ForeColor="Red" />
|
|
</div>
|
|
<div class="elDich">
|
|
<ul data-role="listview" data-inset="true">
|
|
<asp:Repeater ID="repLI" runat="server" DataSourceID="ods">
|
|
<ItemTemplate>
|
|
<li>
|
|
<asp:LinkButton ID="hlEvento" runat="server" OnClick="hlEvento_Click" CommandArgument='<%# Eval("value") %>'>
|
|
<img src='<%# ImgUrl(Eval("value")) %>' alt='<%# Eval("label") %>'>
|
|
<p class="ui-li-dich" style="font-size: 12pt;">
|
|
<asp:Label runat="server" ID="lblTitle" Text='<%# Eval("label") %>' />
|
|
</p>
|
|
</asp:LinkButton>
|
|
</li>
|
|
</ItemTemplate>
|
|
</asp:Repeater>
|
|
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetData" TypeName="MapoDb.DS_UtilityTableAdapters.v_selEventiBCodeTableAdapter">
|
|
</asp:ObjectDataSource>
|
|
</ul>
|
|
</div>
|