怎么用button将datalist中的数据删除?
ASP.Net2.0,C#语言做的购物网站,我使用的是profile将数据保存到系统提供的aspnet数据库,我现在能添加数据,想在添加个button将datalist中...
ASP.Net2.0,C#语言做的购物网站,我使用的是profile将数据保存到系统提供的aspnet数据库,我现在能添加数据,想在添加个button将datalist中的数据删除,哪位高手能帮帮我呢?
protected void Page_Load(object sender, EventArgs e)
{
DisplayFavoriteUrls();
}
protected void Button1_Click(object sender, EventArgs e)
{
String urlString = Server.HtmlDecode(TextBox1.Text);
if (Profile.FavoriteUrls == null)
{
Profile.FavoriteUrls = new System.Collections.Specialized.StringCollection();
}
Profile.FavoriteUrls.Add(urlString);
DisplayFavoriteUrls();
}
void DisplayFavoriteUrls()
{
ListBox1.DataSource = Profile.FavoriteUrls;
ListBox1.DataBind();
}
protected void Button2_Click(object sender, EventArgs e)
{}
还是不太清楚,能具体点吗,最好给出源代码,非常感谢。 展开
protected void Page_Load(object sender, EventArgs e)
{
DisplayFavoriteUrls();
}
protected void Button1_Click(object sender, EventArgs e)
{
String urlString = Server.HtmlDecode(TextBox1.Text);
if (Profile.FavoriteUrls == null)
{
Profile.FavoriteUrls = new System.Collections.Specialized.StringCollection();
}
Profile.FavoriteUrls.Add(urlString);
DisplayFavoriteUrls();
}
void DisplayFavoriteUrls()
{
ListBox1.DataSource = Profile.FavoriteUrls;
ListBox1.DataBind();
}
protected void Button2_Click(object sender, EventArgs e)
{}
还是不太清楚,能具体点吗,最好给出源代码,非常感谢。 展开
展开全部
第1步:添加一个新的dataset项,建立profiletableAdapter,添加增、删、改、查等必要的查询。
第2步:将 dataset引用到页面后台。
imports profiletableAdapter
第3步:编辑 ListBox1绑定事件,找到绑定项对应的button2,使用findcontrol 方法。
第4步:调用profiletableAdapter的delete方法。
第5步:重新绑定listbox1的数据源。
第2步:将 dataset引用到页面后台。
imports profiletableAdapter
第3步:编辑 ListBox1绑定事件,找到绑定项对应的button2,使用findcontrol 方法。
第4步:调用profiletableAdapter的delete方法。
第5步:重新绑定listbox1的数据源。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我就不针对你的再写一个了,自己研究下面我自己以前写的一些的代码吧!
页面代码:
<asp:DataList ID="List_Job" runat="server" Width="629px" OnDeleteCommand="List_Job_DeleteCommand" DataKeyField="ID">
<ItemTemplate>
<table cellSpacing=0 cellPadding=0 width="98%" align="center" border=0>
<tr>
<td style="width:500px" align="left">·<%#Eval("Title") %></td>
<td><%#Eval("Updatatime")%>3</td>
<td align="center" width="22%"><asp:LinkButton ID="delete_job" runat="server" CommandName="delete" OnClientClick="return confirm('确认删除')" Text="删除"></asp:LinkButton></td>
<td> <asp:CheckBox ID="chk" runat="server" /></td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
后置代码
protected void List_Job_DeleteCommand(object source, DataListCommandEventArgs e)
{
if (e.CommandName == "delete")
{
int nID = Convert.ToInt32(List_Job.DataKeys[e.Item.ItemIndex]);
JobSQL js = new JobSQL();
js.Delete_Job(nID);
BinData();
}
}
页面代码:
<asp:DataList ID="List_Job" runat="server" Width="629px" OnDeleteCommand="List_Job_DeleteCommand" DataKeyField="ID">
<ItemTemplate>
<table cellSpacing=0 cellPadding=0 width="98%" align="center" border=0>
<tr>
<td style="width:500px" align="left">·<%#Eval("Title") %></td>
<td><%#Eval("Updatatime")%>3</td>
<td align="center" width="22%"><asp:LinkButton ID="delete_job" runat="server" CommandName="delete" OnClientClick="return confirm('确认删除')" Text="删除"></asp:LinkButton></td>
<td> <asp:CheckBox ID="chk" runat="server" /></td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
后置代码
protected void List_Job_DeleteCommand(object source, DataListCommandEventArgs e)
{
if (e.CommandName == "delete")
{
int nID = Convert.ToInt32(List_Job.DataKeys[e.Item.ItemIndex]);
JobSQL js = new JobSQL();
js.Delete_Job(nID);
BinData();
}
}
参考资料: http://blog.csdn.net/ggh258631664/archive/2010/04/04/5450162.aspx
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
datalist.datasource=null;就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询