datalist中实现删除一条数据的方法

在datalist中添加一个linkButton点击删除对应的一条数据... 在datalist中添加一个linkButton 点击删除对应的一条数据 展开
 我来答
h007ming
2009-07-17 · 超过16用户采纳过TA的回答
知道答主
回答量:103
采纳率:0%
帮助的人:65万
展开全部
aspx页面
LinkButton 包含在datalist中

<asp:LinkButton ID="lbtnDelete" runat="server"OnCommand="lbtnDelete_Command" Style="position:relative" CommandArgument='<%#DataBinder.Eva(Container.DataItem,"ID")%>'>删除</asp:LinkButton>

aspx.cs 页面
protected void lbtnDelete_Command(object sender, CommandEventArgs e)
{
//string userID = Request.QueryString["userID"]; //不好传送,试了N遍
string userID = e.CommandArgument.ToString();
OleDbCommand cmd = new OleDbCommand();
cmd.Connection = db.createCon();
cmd.CommandText = "delete from guest where ID='"+userID+"'";
if (cmd.ExecuteNonQuery() > 0)
{
Response.Write("<script>alert('删除成功!');window.location=window.location;</script>");
}
else
{
Response.Write("<script>alert('删除失败!');window.location=window.location;</script>");
}
}
febirdnet
2009-07-15
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
直接写sql语句就行了!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
鞋男
2009-07-15
知道答主
回答量:14
采纳率:0%
帮助的人:0
展开全部
这么抠?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
潜青谷天泽
2019-10-19 · TA获得超过4085个赞
知道大有可为答主
回答量:3128
采纳率:29%
帮助的人:183万
展开全部
aspx页面
LinkButton
包含在datalist中
<asp:LinkButton
ID="lbtnDelete"
runat="server"OnCommand="lbtnDelete_Command"
Style="position:relative"
CommandArgument='<%#DataBinder.Eva(Container.DataItem,"ID")%>'>删除</asp:LinkButton>
aspx.cs
页面
protected
void
lbtnDelete_Command(object
sender,
CommandEventArgs
e)
{
//string
userID
=
Request.QueryString["userID"];
//不好传送,试了N遍
string
userID
=
e.CommandArgument.ToString();
OleDbCommand
cmd
=
new
OleDbCommand();
cmd.Connection
=
db.createCon();
cmd.CommandText
=
"delete
from
guest
where
ID='"+userID+"'";
if
(cmd.ExecuteNonQuery()
>
0)
{
Response.Write("<script>alert('删除成功!');window.location=window.location;</script>");
}
else
{
Response.Write("<script>alert('删除失败!');window.location=window.location;</script>");
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式