温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:多层文章管理系统源码
当前文件:
MultiLayerArticle/Web/Controls/Search.ascx,打开代码结构图
MultiLayerArticle/Web/Controls/Search.ascx,打开代码结构图1<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Search.ascx.cs" Inherits="Controls_Search" %> 2
<div class="Search"> 3
<div class="Search_Title"> 4
标题:<asp:TextBox CssClass="textBox_2Title" ID="tBoxTitle" runat="server"></asp:TextBox> 5
</div> 6
<asp:Panel ID="PanelUserType" Visible="false" runat="server"> 7
<div class="Search_UserType"> 8
<asp:RadioButtonList CssClass="RedioButtom" ID="rBtnList" runat="server" RepeatDirection="Horizontal"> 9
<asp:ListItem Value="0" Text="个人" Selected="True"></asp:ListItem> 10
<asp:ListItem Value="1" Text="所有"></asp:ListItem> 11
</asp:RadioButtonList> 12
</div> 13
</asp:Panel> 14
<div class="Search_ArticleType"> 15
类别:<asp:DropDownList CssClass="DropDownList" ID="ddlType" runat="server"> 16
</asp:DropDownList> 17
</div> 18
<div class="Search_Summary"> 19
摘要:<asp:TextBox CssClass="textBox_2Title" ID="tBoxSummary" runat="server"></asp:TextBox> 20
</div> 21
<div class="Search_Button"> 22
<asp:Button CssClass="Button" ID="btnSearch" runat="server" Text="查询" OnClick="btnSearch_Click"/> 23
<input class="Button" type="reset" value="重置" /> 24
</div> 25
</div>




