Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
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:

XML
<asp:DataList ID="dListStudentNames" runat="server">
                  <HeaderTemplate>
                   <ItemTemplate>  
                     <input type="button" id="btnStart"  value="Start GD"; onclick="return StartGD();"  />&nbsp;&nbsp;                                     
                   </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>&nbsp;
                                    <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
Posted
Updated 24-Sep-12 23:45pm
v2

1 solution

Pass this to your javsacript function:
JavaScript
document.getElementById('<%= gd_id1.ClientID %>').value
 
Share this answer
 
v2
Comments
Beena John 25-Sep-12 6:29am    
Hi,
Thanks...I have tried this.but this gives an error like


Compiler Error Message: CS0103: The name 'gd_id1' does not exist in the current context
Kuthuparakkal 25-Sep-12 6:34am    
analyze!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900