/BlogEngine/BlogEngine.NET/widgets/Twitter/edit.ascx

# · ASP.NET · 23 lines · 18 code · 5 blank · 0 comment · 0 complexity · 5f634adbe2dcc8ce274d39980a0018de MD5 · raw file

  1. <%@ Control Language="C#" AutoEventWireup="true" CodeFile="edit.ascx.cs" Inherits="Widgets.Twitter.Edit" %>
  2. <%@ Reference Control="~/widgets/Twitter/widget.ascx" %>
  3. <label for="<%=txtAccountUrl %>">Your Twitter account URL</label><br />
  4. <asp:TextBox runat="server" ID="txtAccountUrl" Width="300" />
  5. <asp:RequiredFieldValidator runat="Server" ControlToValidate="txtAccountUrl" ErrorMessage="Please enter a URL" Display="dynamic" /><br /><br />
  6. <label for="<%=txtUrl %>">Twitter RSS feed URL</label><br />
  7. <asp:TextBox runat="server" ID="txtUrl" Width="300" />
  8. <asp:RequiredFieldValidator runat="Server" ControlToValidate="txtUrl" ErrorMessage="Please enter a URL" Display="dynamic" /><br /><br />
  9. <label for="<%=txtTwits %>">Number of displayed Twits</label><br />
  10. <asp:TextBox runat="server" ID="txtTwits" Width="30" />
  11. <asp:RequiredFieldValidator runat="Server" ControlToValidate="txtTwits" ErrorMessage="Please enter a number" Display="dynamic" />
  12. <asp:CompareValidator runat="server" ControlToValidate="txtTwits" Type="Integer" Operator="dataTypeCheck" ErrorMessage="A real number please" /><br /><br />
  13. <label for="<%=txtPolling %>">Polling Interval (#/minutes)</label><br />
  14. <asp:TextBox ID="txtPolling" runat="server" Width="30" />
  15. <asp:CompareValidator runat="server" ControlToValidate="txtPolling" Type="Integer" Operator="dataTypeCheck" ErrorMessage="A real number please" /><br /><br />
  16. <label for="<%=txtFollowMe %>">Follow me text</label><br />
  17. <asp:TextBox runat="server" ID="txtFollowMe" Width="300" />
  18. <asp:RequiredFieldValidator runat="Server" ControlToValidate="txtFollowMe" ErrorMessage="Please enter a valid string" Display="dynamic" /><br /><br />