Click here to Skip to main content
15,893,663 members
Please Sign up or sign in to vote.
1.25/5 (3 votes)
See more:
System.Web.UI.WebControls.TextBox tb = 
(System.Web.UI.WebControls.TextBox)table.Rows[i].Cells[j].FindControl("TextBoxRow_" + i + "Col_" + j);
//Use Request objects for getting the previous data of the dynamic textbox
tb.Text =Request.Form["TextBoxRow_" + i + "Col_" + j];

[Legibility improved]
Posted
Updated 4-Mar-10 1:11am
v4

1 solution

we use content place holder on master page due to some reason:

1.) when we want to incorporate look to all page then we build this look or design on master page..

2.) in this situation we use a content place holder tool on mater page.

3.) when we inherit the master page to the sub page then we can use only content place holder area to shoe the functionality of the sub page .
 
Share this answer
 

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