将数据从中继器插入数据库
本文关键字:插入 数据库 中继器 数据 | 更新日期: 2023-09-27 18:28:59
我的问题已经有很多答案了,但问题是有"太多"糟糕的答案,我必须成为一个天才才能找出什么答案能帮助我。让我们开门见山。我的问题很简单,我有一个repeater
,其中包括两个textboxes
txtQuestion
txtAnswer
我有的绑定方法
List<SessionQuestion> questions = new List<SessionQuestion>();
包含我的问题以将它们绑定到CCD_ 3。
关于17个问题(巴津加!!)。所以我想回答txtAnswer
中的问题然后按下按钮将其保存到数据库中。我使用multi-tier
体系结构,所以我想要最重要的方法来保存我的17 textbox
中的数据,以便将其推送到我的表中。我的桌子是这样的结构。
[SessionQuestionId] [SessionId] [Question] [Answer].
我的代码片段:
<table class="table responsive">
<tbody>
<asp:Repeater ID="questionRepeater" runat="server">
<ItemTemplate>
<tr class="">
<td>
<div class="control-group">
<label class="control-label">Queston <asp:Literal id="liteQuestionNum" runat="server" ></asp:Literal> : </label>
<div class="controls">
<asp:TextBox runat="server" ID="txtQ" Text='<%#Eval("Question") %>' ReadOnly="true" CssClass="span8">
</asp:TextBox>
</div>
</div>
<hr />
<div class="control-group">
<label class="control-label">Answer <asp:Literal id="liteAnserNum" runat="server" ></asp:Literal> : </label>
<div class="controls">
<asp:TextBox ID="txtAns" runat="server" CssClass="span8" TextMode="MultiLine">
</asp:TextBox>
</div>
</div>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
</tbody>
</table>
我的代码隐藏片段:
private void BindRepeater()
{
List<SessionQuestion> questions = new List<SessionQuestion>();
questions.Add(new SessionQuestion { Question = "Question 1 etc.."});
questions.Add(new SessionQuestion { Question = "Question 2 etc.."});
.
.
.
.
questionRepeater.DataSource = questions;
questionRepeater.DataBind();
}
protected void btnSave_Click(object sender, EventArgs e)
{
}
提前谢谢。
您可以尝试一下,我刚刚展示了从中继器获取值的方法,您可以根据需要进一步修改它。
protected void btnSave_Click(object sender, EventArgs e)
{
foreach (RepeaterItem item in questionRepeater.Items)
{
TextBox Qbox = item.FindControl("txtQ") as TextBox;
TextBox Ansbox = item.FindControl("txtAns") as TextBox;
string Question = Qbox.Text;
string Answer = Ansbox.Text;
if (!string.IsNullOrEmpty(Answer))
{
//Perform your insert operation.
}
}
//Bind Repeater again if required
}
没有答案是很好的,但你可以走ajax路线,或者按照这篇文章详细描述对来自中继器的命令参数的响应:
http://www.webcodeexpert.com/2013/04/how-to-bind-edit-update-and-delete-data.html#.Uhlq3VTD-t8
您最好使用jquery+PageMethods。例如,有一个类似的类
public class QuestionAnswer
{
string txtQuestion{get;set;}
string txtAnswer{get;set;}
}
在你的.cs代码上创建一个PageMethods,如下所示:
[WebMethod]
public static void SaveAnswers(QuestionAnswer[] answers)
{
....
}
更改.aspx如下:
<table class="table responsive">
<tbody>
<asp:Repeater ID="questionRepeater" runat="server">
<ItemTemplate>
<tr class="">
<td>
<div class="control-group">
<label class="control-label">Queston <asp:Literal id="liteQuestionNum" runat="server" ></asp:Literal> : </label>
<div class="controls">
<asp:TextBox runat="server" ID="txtQ" Text='<%#Eval("Question") %>' ReadOnly="true" CssClass="span8 question">
</asp:TextBox>
</div>
</div>
<hr />
<div class="control-group">
<label class="control-label">Answer <asp:Literal id="liteAnserNum" runat="server" ></asp:Literal> : </label>
<div class="controls">
<asp:TextBox ID="txtAns" runat="server" CssClass="span8 answer" TextMode="MultiLine">
</asp:TextBox>
</div>
</div>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
</tbody>
.....
don't forget to reference jquery
...
<script>
$('#<%=btnSave.ClientId%>').click(function(){
var answers = [];
$('.responsive tbody tr').each(function(){
answers.push({
txtQuestion:$('td .question').val(),
txtAnswer:$('td .answer').val()
});
});
PageMethods.SaveAnswers(answers);
return false;
});
</script>