asp.net 全部选中与取消操作,选中后的删除(ajax)实现无刷新效果 -k8凯发

2023-07-08 10:41 12次浏览 问答

前台代码 代码如下:
:<%@ page language=”c#” autoeventwireup=”true” codefile=”default。aspx。cs” inherits=”_default” %>
0 transitional//en” “http://www。w3。org/tr/xhtml1/dtd/xhtml1-transitional。dtd”>
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();
}
}
}

相关推荐

网站地图