| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/SolidCP/Portal/DesktopModules/SolidCP/UserControls/ |
Upload File : |
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="EditFeedsList.ascx.cs" Inherits="SolidCP.Portal.UserControls.EditFeedsList" %> <div style="width:100%;"> <div class="FormButtonsBar"> <CPCC:StyleButton id="btnAddFeed" runat="server" meta:resourcekey="btnAddFeed" Text="Add" CssClass="btn btn-primary" CausesValidation="false" OnClick="BtnAddClick"/> </div> <asp:GridView id="gvFeeds" Runat="server" AutoGenerateColumns="False" CssSelectorClass="NormalGridView" OnRowCommand="ListRowCommand" OnRowDataBound="ListRowDataBound" EmptyDataText="gvFeeds" ShowHeader="False"> <columns> <asp:TemplateField HeaderText="gvFeedsLabel" ItemStyle-Wrap="false"> <itemtemplate> <asp:Label id="lblFeedName" Runat="server"></asp:Label> </itemtemplate> </asp:TemplateField> <asp:TemplateField HeaderText="gvFeedsName" ItemStyle-Width="100%"> <itemtemplate> <asp:TextBox id="txtFeedName" Runat="server" Width="95%" CssClass="form-control"> </asp:TextBox> <asp:RegularExpressionValidator id="valCorrectFeedName" runat="server" CssClass="NormalBold" ValidationExpression="^(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?$" ErrorMessage=" *" ControlToValidate="txtFeedName" Display="Dynamic"></asp:RegularExpressionValidator> </itemtemplate> </asp:TemplateField> <asp:TemplateField> <itemtemplate> <CPCC:StyleButton id="cmdDeleteFeed" CssClass="btn btn-danger" runat="server" CommandName='delete_item' CausesValidation="false" meta:resourcekey="cmdDeleteFeed"/> </itemtemplate> <ItemStyle HorizontalAlign="Center" /> </asp:TemplateField> </columns> </asp:GridView> </div>