asp.net

位置:IT落伍者 >> asp.net >> 浏览文章

ASP.NET项目开发指南:客户信息查询(1)[2]


发布日期:2018年08月06日
 
ASP.NET项目开发指南:客户信息查询(1)[2]

程序主要实现了页面中其他条件的设置以及查询结果的显示

程序 ST_CustomersManModuleascx

<TR>

<TD class=rbodycol align=left width=% colSpan=

height=>按方式

<!下拉列表框>

<asp:dropdownlist id=StatusList runat=server>

<asp:ListItem Value=>请选择</asp:ListItem>

<asp:ListItem Value=>姓名</asp:ListItem>

<asp:ListItem Value=>身份证号</asp:ListItem>

</asp:dropdownlist>输入

<asp:textbox id=InputTextBox runat=server

Width=px></asp:textbox><asp:button id=search

runat=server Text=查询 BorderStyle=Groove>

</asp:button></TD></TR>

<TR class=rbody>

<TD class=rbodycol align=center colSpan= height=>

<!GridView控件>

<asp:GridView id=dg_CustomersList runat=server

Width=% PageSize=

AutoGenerateColumns=False BorderColor=Black

DataKeyNames=ST_CIdentityId

onpageindexchanging=GridView_Page >

<AlternatingRowStyle

BackColor=#CCCCFF></AlternatingRowStyle>

<HeaderStyle FontBold=True

BackColor=#CCCCFF></HeaderStyle>

<Columns>

<asp:BoundField DataField=ST_CName

SortExpression= HeaderText=客户姓名></asp:BoundField>

<asp:BoundField DataField=ST_CIdentityId

HeaderText=身份证></asp:BoundField>

<asp:BoundField DataField=ST_CPhone HeaderText=联系

电话></asp:BoundField>

<asp:BoundField DataField=ST_RoomId HeaderText=房间

></asp:BoundField>

<asp:BoundField DataField=ST_BeginTime

HeaderText=订房时间></asp:BoundField>

</Columns>

<PagerSettings Mode=NextPrevious NextPageText=下一页

PreviousPageText=上一页 />

</asp:GridView></TD>

</TR>

<TR>

<td width=% height=>&nbsp; </td>

<TD align=right><asp:button id=ShowAll runat=server

Text=全部显示 BorderStyle=Groove

Visible=False></asp:button></TD>

</TR>

</TABLE>

【代码说明】代码第~行是一个下拉列表框要求选择查询条件代码第~行是一个GridView用来显示查询结果代码第~行是绑定的要显示的字段DataField的值应该与数据表的字段对应

返回目录ASPNET项目开发指南

编辑推荐

ASPNET MVC 框架揭秘

ASPNET开发宝典

ASP NET开发培训视频教程

[] []

               

上一篇:ASP.NET项目开发指南:客户信息查询(1)[1]

下一篇:ASP.NET项目开发指南:客户信息查询(2)[1]