User general settings added to the mailbox details tab FirstName, Lastname added to the create user and mailbox forms DisplayName is generated and editable based on provided first and last name Issue fixed with mailbox details to show "[None]" if user has no plan assigned Option added to the hosting plan to enable or disable the maintenance of mailboxplans by tenants.
27 lines
No EOL
1.3 KiB
Text
27 lines
No EOL
1.3 KiB
Text
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="UserTabs.ascx.cs" Inherits="WebsitePanel.Portal.ExchangeServer.UserControls.UserTabs" %>
|
|
<table width="100%" cellpadding="0" cellspacing="1">
|
|
<tr>
|
|
<td>
|
|
|
|
<asp:DataList ID="dlTabs" runat="server" RepeatDirection="Horizontal"
|
|
RepeatLayout="Flow" EnableViewState="false" RepeatColumns="6" ItemStyle-Height="28px" SeparatorStyle-CssClass="Separator" SeparatorStyle-Height="22px" >
|
|
<ItemStyle Wrap="False" />
|
|
<ItemTemplate >
|
|
<asp:HyperLink ID="lnkTab" runat="server" CssClass="Tab" NavigateUrl='<%# Eval("Url") %>'>
|
|
<%# Eval("Name") %>
|
|
</asp:HyperLink>
|
|
</ItemTemplate>
|
|
<SelectedItemStyle Wrap="False" />
|
|
<SelectedItemTemplate>
|
|
<asp:HyperLink ID="lnkSelTab" runat="server" CssClass="ActiveTab" NavigateUrl='<%# Eval("Url") %>'>
|
|
<%# Eval("Name") %>
|
|
</asp:HyperLink>
|
|
</SelectedItemTemplate>
|
|
<SeparatorTemplate>
|
|
|
|
</SeparatorTemplate>
|
|
</asp:DataList>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br /> |