decyclone Answered 2 Years ago through
Quizzes
`PlaceHolder` control forgets everything that it had on each postback (Stateless behavior). You have to `remember` it instead. Following code works:
Int32 TextBoxCount
{
get
{
if (ViewState["TextBoxCount"] == n...