| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Mail Enable/Bin/NETWebMail/Mobile/Controls/ |
Upload File : |
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="ContactsList.ascx.vb" Inherits="MailEnable.Clients.WebMail.Mobile.Controls.ContactsList" %>
<%@ Register TagPrefix="m" Assembly="MobileWebMail" Namespace="MailEnable.Clients.WebMail.Mobile" %>
<asp:ListView id="ContactsListView" DataSourceId="ContactsSource" runat="server">
<LayoutTemplate>
<ul data-role="listview" class="pagedList filteredList" data-autodividers="true" data-divider-theme="c">
<asp:PlaceHolder id="itemPlaceholder" runat="server" />
</ul>
<asp:DataPager id="ContactsListPager" PageSize="50" QueryStringField="p" runat="server">
<Fields>
<m:NextPreviousPagerField />
</Fields>
</asp:DataPager>
</LayoutTemplate>
<ItemTemplate>
<li>
<a href="ContactDetails.aspx?Id=<%# DataBinder.Eval(Container.DataItem, "Id") %>">
<table width="100%"><tr><td style="width:44px">
<tr><td>
<div style="display:table-cell;vertical-align:middle;text-align:center;height:35px;width:35px;" onselectstart="return false;">
<img alt="" align="middle" src="<%#DataBinder.Eval(Container.DataItem, "ContactURL")%>" style="max-width:39px;max-height:39px;width:expression(this.width>39?'39px':true);height:expression(this.height>39?'39px':true);" onselectstart="return false;"/>
</div>
</td><td>
<h3><%#DataBinder.Eval(Container.DataItem, "DisplayName")%></h3><p><%#DataBinder.Eval(Container.DataItem, "Email")%></p>
</td></tr></table>
</a>
</li>
</ItemTemplate>
<EmptyDataTemplate>
<p>No contacts in this view.</p>
</EmptyDataTemplate>
</asp:ListView>
<asp:ObjectDataSource id="ContactsSource" SelectMethod="GetContacts" TypeName="MailEnable.Clients.WebMail.Mobile.ContactsDataSource" runat="server">
<SelectParameters>
<asp:SessionParameter Name="AuthenticatedUser" SessionField="AuthenticatedUser" />
<asp:QueryStringParameter Name="Filter" QueryStringField="filter" />
</SelectParameters>
</asp:ObjectDataSource>