摘要:
DataList控件 实现查看详细信息按钮 1. 在普通项模板中添加一个按钮 将该按钮的 commandName 属性设置为”select” 2. 在DataList的ItemCommand 事件中 实现选择行代码protected void DataList1_ItemCommand(object source, DataListCommandEventArgs e) {if (e.CommandName=="select") {this.DataList1.SelectedIndex = e.Item.ItemIndex;this.DataList1.DataBind( 阅读全文
摘要:
Demoint pagetCount = Convert.ToInt32(this.Label1.Text); SqlConnection con = DB.con; SqlDataAdapter sda = new SqlDataAdapter(); DataSet ds = new DataSet(); PagedDataSource ps = new PagedDataSource();//可分页数据源 sda.SelectCommand = new SqlCommand("select top(90) * from books", con);try { con.Op 阅读全文
摘要:
简单属性 <%# textBox.txt%> Page.DataBind();该方法将数据源绑定到被调用的服务器控件及其所有子控件 <asp:TextBox ID=”TextBox1” runat=”server” AutoPostBack=”True” ontextchanged=”TextBox1_TextChanged”></asp:TextBox> <asp:Label ID=”Label1” runat=”server” Text=”<%# TextBox1.Text %>”></asp:Label> <b 阅读全文