濮阳杆衣贸易有限公司

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

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

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

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>報(bào)到號(hào)/th>th>考生號(hào)/th>th>姓名/th>th>身份證號(hào)碼/th>th>家庭地址/th>th>類(lèi)別/th>th>專(zhuān)業(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('確定要?jiǎng)h除嗎?該操作不可恢復(fù)!!!')" />
br />
br />
webdiyer:AspNetPager ID="benren" runat="server" pagesize="2"
CssClass="anpager" onpagechanged="AspNetPager1_PageChanged"
FirstPageText="首頁(yè)" LastPageText="尾頁(yè)" NextPageText="下一頁(yè)" PrevPageText="上一頁(yè)"
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ù)中應(yīng)該用:select top查詢(xún)語(yǔ)句
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 = "";
//先遍歷取得選中項(xiàng)
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 + ",";
}
}
}
//去掉最后一個(gè),
delId = (delId + ")").Replace(",)", "");
//Response.Write("刪除的語(yǔ)句是:delete news_sosuo8_ where id_news_ in(" + delId + ")");
//自己寫(xiě)刪除語(yǔ)句吧
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顯示某列總計(jì)思路與代碼
  • Repeater控件動(dòng)態(tài)變更列(Header,Item和Foot)信息實(shí)現(xiàn)思路
  • repeater 分列顯示以及布局的實(shí)例代碼
  • Repeater對(duì)數(shù)據(jù)進(jìn)行格式化處理
  • ASP.NET中repeater嵌套實(shí)現(xiàn)代碼(附源碼)
  • Repeater與ListView功能概述及使用介紹
  • Repeater控件數(shù)據(jù)導(dǎo)出Excel(附演示動(dòng)畫(huà))
  • asp.net中讓Repeater和GridView支持DataPager分頁(yè)
  • 在jquery repeater中添加設(shè)置日期,下拉,復(fù)選框等控件
  • Repeater控件動(dòng)態(tài)變更列(Header,Item和Foot)信息(重構(gòu)cs)

標(biāo)簽:百色 新鄉(xiāng) 朝陽(yáng) 洛陽(yáng) 臺(tái)州 朔州 喀什 周口

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Repeater全選刪除和分頁(yè)實(shí)現(xiàn)思路及代碼》,本文關(guān)鍵詞  Repeater,全選,刪除,和,分頁(yè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Repeater全選刪除和分頁(yè)實(shí)現(xiàn)思路及代碼》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Repeater全選刪除和分頁(yè)實(shí)現(xiàn)思路及代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    出国| 孟州市| 乐清市| 佛冈县| 吴桥县| 天镇县| 维西| 进贤县| 崇明县| 竹北市| 仙桃市| 安吉县| 布尔津县| 东方市| 五常市| 宁河县| 蓝山县| 泗阳县| 盐边县| 焦作市| 佛坪县| 浙江省| 开平市| 太白县| 兴安盟| 永安市| 普陀区| 抚松县| 和顺县| 安塞县| 察隅县| 济阳县| 大石桥市| 彝良县| 思南县| 镇远县| 闵行区| 元朗区| 侯马市| 平和县| 洛阳市|