你喜欢的食物<br/>
<input type="checkbox" name="chbFood" value="apple" />苹果<br/>
<input type="checkbox" name="chbFood" value="orange" />橘子<br/>
<input type="checkbox" name="chbFood" value="banana" />香蕉<br/>
<input type="checkbox" name="chbFood" value="bread" />面包<br/>
<asp:Button runat="server" Text="提交" ID="btnSubmit"/>
在接收数据的页面的cs文件的Page_Lode里面放上这个
object obj=Request.Form["chbFood"]
if (obj != null)
{
string strFood = (string)obj
Response.Write(strFood)
}
当你做了选择,点击提交,就会在页面上输出你选中的项的value。
有很多方法。1.
在你的check中保存数据行id,然后获取到数据行id,从数据库查询这行数据(从数据库获取数据)
2.
在页面没有回传的前提下,获取到checkbox所属数据源的index,然后直接获取repeater.items[index].data就是你要的数据了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)