PageRenderTime 56ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/widgets/Tag cloud/edit.ascx

#
ASP.NET | 28 lines | 27 code | 1 blank | 0 comment | 0 complexity | ae2f09552437eb2f68187a4043112cd0 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <%@ Control Language="C#" AutoEventWireup="true" CodeFile="edit.ascx.cs" Inherits="Widgets.TagCloud.Edit" %>
  2. <%@ Reference VirtualPath="~/widgets/Tag cloud/widget.ascx" %>
  3. <label for="<%=ddlMinimumPosts.ClientID %>">Minimum posts in each tag</label><br />
  4. <asp:DropDownList runat="server" ID="ddlMinimumPosts">
  5. <asp:ListItem Value="1" Text="1 (default)" />
  6. <asp:ListItem Text="2" />
  7. <asp:ListItem Text="3" />
  8. <asp:ListItem Text="4" />
  9. <asp:ListItem Text="5" />
  10. <asp:ListItem Text="6" />
  11. <asp:ListItem Text="7" />
  12. <asp:ListItem Text="8" />
  13. <asp:ListItem Text="9" />
  14. <asp:ListItem Text="10" />
  15. </asp:DropDownList>
  16. <br /><br />
  17. <label for="<%=ddlCloudSize.ClientID %>">Tag cloud maximum size (Sorted by Recent Posts)</label><br />
  18. <asp:DropDownList runat="server" ID="ddlCloudSize">
  19. <asp:ListItem Value="-1" Text="Unlimited (default)" />
  20. <asp:ListItem Text="10" />
  21. <asp:ListItem Text="25" />
  22. <asp:ListItem Text="50" />
  23. <asp:ListItem Text="75" />
  24. <asp:ListItem Text="100" />
  25. <asp:ListItem Text="125" />
  26. <asp:ListItem Text="150" />
  27. </asp:DropDownList>