asp.net 全部选中与取消操作,选中后的删除(ajax)实现无刷新效果 -k8凯发
前台代码 代码如下:
:<%@ page language=”c#” autoeventwireup=”true” codefile=”default。aspx。cs” inherits=”_default” %>
org/1999/xhtml”>
后台代码:
代码如下:
using system;
using system。
data;
using system。configuration;
using system。web;
using system。web。security;
using system。
web。ui;
using system。web。ui。webcontrols;
using system。web。ui。webcontrols。webparts;
using system。
web。ui。htmlcontrols;
using system。data。sqlclient;
using system。text;
public partial class _default : system。
web。ui。page
{
string straction = “”;
protected void page_load(object sender, eventargs e)
{
straction = request[“action”];
if(straction==”action”)
{
userinfo();
}
if (straction == “delete”)
{
deleteuser();
}
}
///
/// 周昕 2009-6-8号加载用户详细信息
///
public void userinfo()
{
sqlconnection mycon = new sqlconnection();
mycon。
connectionstring = configurationmanager。connectionstrings[“boboconn”]。tostring();
string sql = “select * from loginuser”;
sqlcommand mycom = new sqlcommand(sql, mycon);
mycon。
open();
sqldatareader myda = mycom。executereader();
stringbuilder str = new stringbuilder();
str。
append(“”);
while (myda。
read())
{
str。append(“”);
str。
append(“”);
str。append(“”);
}
str。append(“
全选 | 用户名 | 用户全名 |
”); str。append(“tostring() “‘ type=’checkbox’ name=’checkitem’ style=’text-align=’left’ onclick=’ numberid()’/> | ” myda[“username”]。tostring() “ | ” myda[“fullname”]。 tostring() “ |
str。append(” ”);
response。
clear();
response。contenttype = “application/text”;
response。write(str);
response。end();
}
///
/// 周昕 2009-6-8 删除选中用户的详细信息
///
public void deleteuser()
{
//获取用户id
string strid = request[“userid”];
string userid = strid。
substring(0, strid。length – 1);
//转换成为数组
string[] stridarray = userid。trim()。split(‘,’);
string sql = “delete from loginuser where id='” stridarray[0]。
tostring() “‘”;
for (int i = 0; i < stridarray。length; i )
{
string id = stridarray[i]。
tostring();
sql = “or id='” id “‘”;
}
sqlconnection mycon = new sqlconnection();
mycon。
connectionstring = configurationmanager。connectionstrings[“boboconn”]。tostring();
mycon。open();
sqlcommand mycom = new sqlcommand(sql, mycon);
int n = (int)mycom。
executenonquery();
mycon。close();
if (n > 0)
{
response。clear();
response。
contenttype = “application/text”;
response。write(“ok”);
response。end();
}
else
{
response。
clear();
response。contenttype = “application/text”;
response。write(“no”);
response。end();
}
}
}
。
1.文章《asp.net 全部选中与取消操作,选中后的删除(ajax)实现无刷新效果》援引自互联网,为网友投稿收集整理,仅供学习和研究使用,内容仅代表作者本人观点,与本网站无关,侵删请点击页脚凯发k8国际手机app下载的联系方式。
2.文章《asp.net 全部选中与取消操作,选中后的删除(ajax)实现无刷新效果》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。