主頁 > 知識庫 > Repeater全選刪除和分頁實現(xiàn)思路及代碼

Repeater全選刪除和分頁實現(xiàn)思路及代碼

熱門標簽:廈門四川外呼系統(tǒng) 百度地圖標注點擊事件 地圖標注位置多的錢 濟源人工智能電話機器人價格 杭州智能電話機器人 內(nèi)蒙古智能電銷機器人哪家強 山東防封電銷卡辦理套餐 怎樣在地圖標注消火栓圖形 泰州手機外呼系統(tǒng)軟件
復制代碼 代碼如下:

script type="text/javascript">
function SelectAll(box)
{
for(var i=0;i document.form1.elements.length;i++)
{
var e=document.form1.elements[i];
if((e.type=='checkbox'))
{
var o=e.name.lastIndexOf('cbx');
if(o!=-1)
{
e.checked=box.checked;
}
}
}
}
/script>
body>
form id="form1" runat="server">
div>
/div>
asp:Repeater ID="Repeater1" runat="server">
HeaderTemplate>
table>
tr>th>input id= "chkHeader" type= "checkbox" onclick= "SelectAll(this)"/>全選/th>th>報到號/th>th>考生號/th>th>姓名/th>th>身份證號碼/th>th>家庭地址/th>th>類別/th>th>專業(yè)/th>/tr>
/HeaderTemplate>
ItemTemplate>
tr>td align="center" >asp:CheckBox ID="cbx" runat="server" />/td>td>asp:Label id="lbl" Text='%#Eval("id") %>' runat="server" >/asp:Label>/td>td>%#Eval("ksh") %>/td>td>%#Eval("xm") %>/td>td>%#Eval("sfzh") %>/td>td>%#Eval("jtdz") %>/td>td>%#Eval("jhxzmc") %>/td>td>%#Eval("lqzy") %>/td>/tr>
/ItemTemplate>
FooterTemplate>
/table>
/FooterTemplate>
/asp:Repeater>
br />
asp:Button ID="btnDel" runat="server" onclick="btnDel_Click" Text="批量刪除" OnClientClick="return confirm('確定要刪除嗎?該操作不可恢復?。。?)" />
br />
br />
webdiyer:AspNetPager ID="benren" runat="server" pagesize="2"
CssClass="anpager" onpagechanged="AspNetPager1_PageChanged"
FirstPageText="首頁" LastPageText="尾頁" NextPageText="下一頁" PrevPageText="上一頁"
ShowMoreButtons="False" ShowPageIndexBox="Never" AlwaysShow="True">
/webdiyer:AspNetPager>
/form>
/body>
==================
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string username = Session["username"].ToString();
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["shan"].ConnectionString);
conn.Open();
SqlCommand count = new SqlCommand("select count(*) from do.so where baosongren = '"+username+"'", conn);
benren.RecordCount = (int)count.ExecuteScalar();
conn.Close();
BindData();
}
}
public void BindData()
{
string username = Session["username"].ToString();
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["shnn"].ConnectionString);
string sql = "select * from dao where baosongren = '"+username+"' order by ID desc";//這句在大型數(shù)據(jù)中應該用:select top查詢語句
SqlDataAdapter da = new SqlDataAdapter(sql, conn);
DataSet ds = new DataSet();
da.Fill(ds, benren.PageSize * (benren.CurrentPageIndex - 1), benren.PageSize, "temptbl");
DataTable dt = ds.Tables["temptbl"];
Repeater1.DataSource = dt;
Repeater1.DataBind();
}
protected void AspNetPager1_PageChanged(object src, EventArgs e)
{
//AspNetPager1.CurrentPageIndex = e.NewPageIndex;
BindData();
}
protected void btnDel_Click(object sender, EventArgs e)
{
string delId = "";
//先遍歷取得選中項
for (int i = 0; i this.Repeater1.Items.Count; i++)
{
CheckBox cbx = (CheckBox)Repeater1.Items[i].FindControl("cbx");
Label lbl = (Label)Repeater1.Items[i].FindControl("lbl");
if (cbx != null)
{
if (cbx.Checked)
{
delId += lbl.Text + ",";
}
}
}
//去掉最后一個,
delId = (delId + ")").Replace(",)", "");
//Response.Write("刪除的語句是:delete news_sosuo8_ where id_news_ in(" + delId + ")");
//自己寫刪除語句吧
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["shann"].ConnectionString);
SqlCommand del = new SqlCommand("delete so where id in(" + delId + ")", conn);
conn.Open();
int myupdate = del.ExecuteNonQuery();
conn.Close();
if (myupdate > 0)
{
Page.ClientScript.RegisterStartupScript(Page.GetType(), "message", "script language='javascript'>alert('刪除成功!');/script>");
}
BindData();
}
您可能感興趣的文章:
  • Repeater的FooterTemplate顯示某列總計思路與代碼
  • Repeater控件動態(tài)變更列(Header,Item和Foot)信息實現(xiàn)思路
  • repeater 分列顯示以及布局的實例代碼
  • Repeater對數(shù)據(jù)進行格式化處理
  • ASP.NET中repeater嵌套實現(xiàn)代碼(附源碼)
  • Repeater與ListView功能概述及使用介紹
  • Repeater控件數(shù)據(jù)導出Excel(附演示動畫)
  • asp.net中讓Repeater和GridView支持DataPager分頁
  • 在jquery repeater中添加設置日期,下拉,復選框等控件
  • Repeater控件動態(tài)變更列(Header,Item和Foot)信息(重構(gòu)cs)

標簽:百色 新鄉(xiāng) 朝陽 洛陽 臺州 朔州 喀什 周口

巨人網(wǎng)絡通訊聲明:本文標題《Repeater全選刪除和分頁實現(xiàn)思路及代碼》,本文關鍵詞  Repeater,全選,刪除,和,分頁,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關。
  • 相關文章
  • 下面列出與本文章《Repeater全選刪除和分頁實現(xiàn)思路及代碼》相關的同類信息!
  • 本頁收集關于Repeater全選刪除和分頁實現(xiàn)思路及代碼的相關信息資訊供網(wǎng)民參考!
  • 推薦文章