Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/VB/ChartsWebDemo/UserControls/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/VB/ChartsWebDemo/UserControls/DemoTabs.ascx

<%@ Control Language="vb" AutoEventWireup="true" CodeFile="DemoTabs.ascx.vb" Inherits="UserControls_DemoTabs" %>
<dx:ASPxPageControl ID="DemoPageControl" ClientInstanceName="DemoPageControl" CssClass="DemoPageControl" runat="server" EnableTheming="false"
	EnableViewState="false" RenderMode="Lightweight" Width="100%" EnableCallbacks="True" EnableTabScrolling="true" TabAlign="Justify">
	<Paddings Padding="0" />
	<TabPages>
		<dx:TabPage Name="Description" Text="Description">
			<ContentCollection>
				<dx:ContentControl>
					<div class="TextContent">
						<%=Utils.CurrentDemo.Description%>
<%
						   If Utils.CurrentDemoPage.SeeAlsoLinks.Count > 0 Then
%>
						<br />
						<span class="SeeAlso">See Also:</span>
						<ul>
<%
							   For Each sa In Utils.CurrentDemoPage.SeeAlsoLinks
%>
								<li><a href="<%=sa.Url%>"><%=sa.Title%></a></li>
<%
							   Next sa
%>
						</ul>
<%
						   End If
%>
					</div>
				</dx:ContentControl>
			</ContentCollection>
		</dx:TabPage>
	</TabPages>
</dx:ASPxPageControl>