Mini Kabibi Habibi
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexContent" ContentPlaceHolderID="ContentHolder" runat="server">
<% Html.BeginForm("Export", "TreeList"); %>
<% TreeListExportDemoOptions options = (TreeListExportDemoOptions)Session["TreeListExportOptions"]; %>
<div class="BottomMargin">
<% foreach(string typeName in TreeListDemoHelper.ExportTypes.Keys) { %>
<input type="submit" name="<%= typeName %>" value="<%= TreeListDemoHelper.ExportTypes[typeName].Title %>" />
<% } %>
<%= Html.CheckBox("EnableAutoWidth", options.EnableAutoWidth, new { style = "vertical-align: middle" })%>
<label for="EnableAutoWidth" style="vertical-align: middle">Auto-width</label>
<%= Html.CheckBox("ExpandAllNodes", options.ExpandAllNodes, new { style = "vertical-align: middle" })%>
<label for="ExpandAllNodes" style="vertical-align: middle">Expand all nodes</label>
<%= Html.CheckBox("ShowTreeButtons", options.ShowTreeButtons, new { style = "vertical-align: middle" })%>
<label for="ShowTreeButtons" style="vertical-align: middle">Show tree buttons</label>
</div>
<% Html.RenderPartial("ExportPartial", Model); %>
<% Html.EndForm(); %>
</asp:Content>