62,268
社区成员
发帖
与我相关
我的任务
分享
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" >
<asp:ListItem Value="MI_AssetSerial">固定资产编号</asp:ListItem>
<asp:ListItem Value="MI_Name">设备名称</asp:ListItem>
<asp:ListItem Value="MI_Model">规格型号</asp:ListItem>
<asp:ListItem Value="MI_Power">性能</asp:ListItem>
<asp:ListItem Value="MI_DevType">设备类型</asp:ListItem>
<asp:ListItem Value="MI_PurchaseDate">购买日期</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList2_SelectedIndexChanged" >
<asp:ListItem Value="like">包含</asp:ListItem>
<asp:ListItem Value="=">等于</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="DropDownList3" runat="server">
<asp:ListItem>生产设备</asp:ListItem>
<asp:ListItem>办公设备</asp:ListItem>
</asp:DropDownList>
<asp:Button ID="btnQuery" runat="server" Text="搜索" OnClick="btnQuery_Click" CssClass="btncss" />
</ContentTemplate>
</asp:UpdatePanel>