Getting value of a asp:textbox from grid which is inside repeater

Joined
Jun 12, 2007
Messages
3
Reaction score
0
Hi,
I have a texbox which is a template column of a grid and the grid is inside the repeater.
If the textbox is directly inside the repeater,then I can make use of the following code.
foreach (RepeaterItem item in Repeater1.Items)
{
TextBox FirstName = (TextBox)item.FindControl("txtFirstName");
Response.Write(FirstName.Text);
}

But I have a grid textbox column and the grid is inside the repeater..So can anyone please help me how to access the textbox.

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top