客户信息和经营状况信息的查询
客户信息查询()
信息的查询分为客户信息查询和房间的经营状况查询在管理员界面中单击客户信息查询超链接将进入客户信息查询页面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源代码中写入固定的月份值也可以在后台通过循环动态生成月份值
[] []