本文介绍了如何将LinkBut​​ton CommandArgument值插入Sql数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的代码,如果您输入的是代码,则d列中的数字将为零,而不是ID号.但是我想显示fm_id号.任何帮助将不胜感激.

Here is my code and if you it, you will get zero in d column instead of id number. But I want fm_id number to be displayed. Any help would be gratefully received.

<itemtemplate>
 <asp:LinkButton ID="lnbtn_thrd" runat="server" Font-Underline="true" OnClick="lbtn_topic_Click" Text=''<%#Bind("fm_Topic")%>'' CommandArgument=''<%#Bind("fm_Id")%>''
 </itemtemplate>


objsql.CommandText = "Insert Into tbl_Forums(fm_Discription,fm_Views,fm_CreatedBy,fm_Parent)Values (''" + txt_reply.Text +"'',0,''" + Session["sUserId"] +"'',''"+ e.CommandArgument+"'');

           objsql.ExecuteNonQuery();

推荐答案


这篇关于如何将LinkBut​​ton CommandArgument值插入Sql数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 13:51