TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ajitender Vijay
NA
263
120.2k
Find getElementById of textbox
Aug 31 2013 8:02 AM
How can i getElementById of textbox (txtName), which is inside nested repeater.
<asp:Repeater runat="server" ID="dlProducts" OnItemDataBound="dlProducts_ItemDataBound">
<HeaderTemplate>
<table width="100%" cellpadding="5" cellspacing="1" class="tableOL">
<tr bgcolor="#cccccc">
<td>
<b>
<asp:Label ID="lblProductCode" Text="Product Code" runat="server"></asp:Label></b>
</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<asp:Label ID="lblProductCode" runat="server" Width="55px" Text='<%# Eval("ProductCode")%>'></asp:Label>
<asp:Panel ID="pnlOderItems" runat="server" Visible="false" BorderWidth="1">
<table>
<tr>
<td> <h3> Item Details</h3>
<asp:Repeater ID="rptrOrderItems" runat="server" >
<HeaderTemplate>
<table cellpadding="5" cellspacing="1" border="0">
<tr bgcolor="#cccccc">
<td>
<b>Name </b>
</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<asp:TextBox ID="txtIName" runat="server" MaxLength="20" Width="250px" onblur="textone();" ></asp:TextBox>
</ItemTemplate>
</asp:Repeater>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
Reply
Answers (
1
)
ASP.NET GridView Fill Error
update webservice in our local