客戶信息和經營狀況信息的查詢
客戶信息查詢()
信息的查詢分為客戶信息查詢和房間的經營狀況查詢在管理員界面中單擊客戶信息查詢超鏈接將進入客戶信息查詢頁面ST_CustomersManaspx如圖所示
圖 客戶信息查詢頁面
ST_CustomersManaspx的主要代碼
ST_CustomersManaspx的全部HTML代碼參見配書光盤在此重點關注控件<Module:CustomersMan id=ModuleCustomerMan runat=server />ST_CustomersManModuleascx的HTML代碼如程序所示
程序 ST_CustomersManModuleascx
<TABLE cellSpacing= cellPadding= width=%>
<TR class=rheader>
<TD class=rheadercol align=left colSpan= height=>
客戶信息查詢
</TD>
</TR> <! SPACER ROW >
<TR class=rbody>
<TD class=rbodycol colSpan=>按日期
<FONT color=#ff>從
<asp:dropdownlist id=YearFromList runat=server>
<asp:ListItem Value=
Selected=True></asp:ListItem>
<asp:ListItem Value=></asp:ListItem>
… …
<asp:ListItem Value=></asp:ListItem>
</asp:dropdownlist></FONT>年
<asp:dropdownlist id=MouthFromList runat=server>
<asp:ListItem Value=></asp:ListItem>
… …
<asp:ListItem Value=></asp:ListItem>
</asp:dropdownlist>月
<asp:dropdownlist id=DayFromList runat=server>
<asp:ListItem Value=></asp:ListItem>
… …
<asp:ListItem Value=></asp:ListItem>
</asp:dropdownlist>日<FONT color=#ff>至
<asp:dropdownlist id=YearToList runat=server>
<asp:ListItem Value=></asp:ListItem>
… …
<asp:ListItem Value=></asp:ListItem>
<asp:ListItem Value=
Selected=True></asp:ListItem>
</asp:dropdownlist></FONT>年
<!下拉列表框用來顯示月份>
<asp:dropdownlist id=MouthToList runat=server>
<asp:ListItem Value=></asp:ListItem>
… …
<asp:ListItem Value=
Selected=True></asp:ListItem>
</asp:dropdownlist>月
<asp:dropdownlist id=DayToList runat=server>
<asp:ListItem Value=></asp:ListItem>
… …
<asp:ListItem Value=
Selected=True></asp:ListItem>
</asp:dropdownlist>日</TD>
</TR>
…
【代碼說明】上述代碼構建了按日期查找的控件在經營狀況統計頁面中也將用到這段代碼
技巧可以直接在HTML源代碼中寫入固定的月份值也可以在後台通過循環動態生成月份值
[] []
From:http://tw.wingwit.com/Article/program/net/201311/15966.html