⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 managecategory.aspx

📁 ASP.NET多线程编程(二),ASP.NET多线程编程(二) .
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/Admin/Resource/MasterPage.master" AutoEventWireup="true"
    CodeFile="ManageCategory.aspx.cs" Inherits="Admin_ManageCategory" %>

<%@ Register Src="Menu.ascx" TagName="Menu" TagPrefix="uc1" %>
<%@ Register TagPrefix="zeroone" Namespace="Zeroone.Custom.CustomPropertyControl"
    Assembly="Zeroone" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">

    <script type="text/javascript">      
    parent.frameset.cols = "400px,*";   
    </script>

    <uc1:Menu ID="Menu1" runat="server" SelectIndex="0" />
    <div id="childMenu">
        <asp:LinkButton ID="LinkButton1" runat="server" OnClick="btnManageCategory_Click" >保存</asp:LinkButton>
        <asp:LinkButton ID="lbtnCancel" runat="server" OnClick="lbtnCancel_Click" CausesValidation="False" >返回</asp:LinkButton>
    </div>
    <table width="100%" border="0">
    <tr>
    <td>栏目名称:</td>
    <td><asp:TextBox ID="tbName" runat="server" Columns="30"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="tbName"
            ErrorMessage="请填写栏目名称"></asp:RequiredFieldValidator></td>
    </tr>
    <tr>
    <td>栏目路径:</td>
    <td><asp:TextBox ID="tbPath" runat="server" Columns="30"></asp:TextBox>
        <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="tbPath"
            ErrorMessage="路径格式不正确" ValidationExpression="^[\w-/]+$"></asp:RegularExpressionValidator></td>
    </tr>
    <tr>
    <td colspan="2"><zeroone:CategoryCustomPropertyControlsStage runat="server" ID="customPropertyValues">
        </zeroone:CategoryCustomPropertyControlsStage></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td><asp:Button ID="btnManageCategory" runat="server" OnClick="btnManageCategory_Click"
        Text="Button" /></td>
    </tr>    
    </table>
    
</asp:Content>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -