我的问题已经有了很多答案,但问题是“sooo”有很多不好的答案,我必须天才才能找出答案对我有什么帮助。
让我们谈谈。
我的问题很简单,我的repeater
包含两个textboxes
txtQuestion
txtAnswer
我有一个带
的绑定方法 List<SessionQuestion> questions = new List<SessionQuestion>();
包含我的问题以将它们绑定到txtQuestion
。
约17个问题(Bazinga !!)。
所以我想回答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)
{
}
提前致谢。
答案 0 :(得分:4)
您可以试试这个,我刚刚展示了从转发器中获取值的方法,您可以根据需要进一步修改它。
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
}
答案 1 :(得分:0)
没有答案是可以的,但你可以去ajax路线或遵循这篇文章详细说明响应来自你的转发器的命令参数:
http://www.webcodeexpert.com/2013/04/how-to-bind-edit-update-and-delete-data.html#.Uhlq3VTD-t8
答案 2 :(得分:0)
您最好的选择是使用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>