55 lines
2.5 KiB
Plaintext
55 lines
2.5 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MainSearch.aspx.cs" Inherits="FineUIPro.Web.common.MainSearch" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>查询条件</title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
|
|
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
|
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtKeyword" runat="server" Label="Keyword" LabelAlign="Right" LabelWidth="140px" NextFocusControl="btnSure">
|
|
</f:TextBox>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtContractNo" runat="server" Label="Contract No." LabelAlign="Right" LabelWidth="140px" NextFocusControl="btnSure">
|
|
</f:TextBox>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpContractAdmin" runat="server" Label="Contract Admin." LabelAlign="Right" EnableEdit="true" LabelWidth="140px" NextFocusControl="btnSure"></f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpPricingScheme" runat="server" Label="Pricing Scheme" LabelAlign="Right" EnableEdit="true" LabelWidth="140px" NextFocusControl="btnSure"></f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:Button ID="btnReset" Icon="ArrowRotateClockwise" Text="Reset" runat="server" ToolTip="Reset"
|
|
OnClick="btnReset_Click">
|
|
</f:Button>
|
|
<f:Button ID="btnSure" Icon="Accept" Text="Confirm" runat="server" ToolTip="Confirm"
|
|
OnClick="btnSure_Click">
|
|
</f:Button>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Form>
|
|
</form>
|
|
</body>
|
|
</html>
|