本文介绍了将隐藏字段值作为参数传递的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将具有id gd_id1的隐藏字段的值作为StartGD方法的参数传递.代码如下:
Hi,
I wants to pass the value of hidden field having id gd_id1 as a parameter of StartGD method.The code is given below:
<asp:DataList ID="dListStudentNames" runat="server">
<HeaderTemplate>
<ItemTemplate>
<input type="button" id="btnStart" value="Start GD"; onclick="return StartGD();" />
</ItemTemplate>
</HeaderTemplate>
<ItemTemplate>
<table style="border: thin solid #FFFF00;">
<tr bgcolor="#a9b8a9">
<td>
<input type="hidden" id="gd_id1" value='<%#Eval("GroupId") %>'/>
<asp:Label ID="lblSlno" runat="server" Text="<%# Container.ItemIndex+1 %>"></asp:Label>
<asp:Label ID="lblStudentName" runat="server" Text='<%#Eval("Studentname") %>'></asp:Label>
<input id="gd_student_<%# Container.ItemIndex%>" type="hidden" value='<%#Eval("StudentId") %>' />
</td>
</tr>
<tr>
<td >
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList
>
请帮助我....在此先感谢
>
Please help me....Thanks in advance
推荐答案
document.getElementById('<%= gd_id1.ClientID %>').value
这篇关于将隐藏字段值作为参数传递的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!