. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 87.98.249.37 / Your IP : 216.73.216.208 [ Web Server : Microsoft-IIS/10.0 System : Windows NT NS3076740 10.0 build 17763 (Windows Server 2019) AMD64 User : IWPD_292(growel19p) ( 0) PHP Version : 8.3.12 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/growel.com/httpdocs/GrowelAdmin/ |
Upload File : |
<%@ Page Title="" Language="C#" MasterPageFile="~/GrowelAdmin/Admin.Master" AutoEventWireup="true" CodeBehind="AddNewProduct.aspx.cs" Inherits="GrowelWeb.GrowelAdmin.lang.AddNewProduct" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<h3>Add New Product</h3>
<div class="btn-success status" visible="false" runat="server" id="status"></div>
<table cellspacing="0" cellpadding="4" border="0" width="90%" class="form">
<tr>
<td width="150">Product Title</td><td>
<asp:TextBox ID="txtnewstitle" runat="server" CssClass="form-control"></asp:TextBox> <asp:requiredfieldvalidator runat="server" errormessage="*" ControlToValidate="txtnewstitle"></asp:requiredfieldvalidator>
</td></tr>
<tr>
<td>DisplayName</td>
<td>
<asp:TextBox ID="txtdisplaytitle" runat="server" CssClass="form-control"></asp:TextBox>
<%-- <asp:requiredfieldvalidator runat="server" errormessage="*" ControlToValidate="txtdisplaytitle"></asp:requiredfieldvalidator>--%>
</td>
</tr>
<tr>
<td>Date</td>
<td>
<asp:TextBox ID="txtnewsdate" runat="server" CssClass="form-control datepicker-here" data-language="en" ></asp:TextBox>
</td>
</tr>
<tr>
<td valign="top">Product Details</td>
<td>
<textarea name="content" id="content" runat="server" rows="20" cols="100" class="ckeditor"></textarea>
</td>
</tr>
<tr>
<td> </td>
<td>
<asp:Button ID="btnsubmit" runat="server" Text="Add New Product" OnClick="btnsubmit_Click" />
</td>
</tr>
</table>
</asp:Content>