Y
Yuriy Solodkyy
Hi
Do you add your newly created control to the page? If you create your control
dynamically you need to add it to the page. The simplest way is to put a
PlaceHolder control at your web page and add your grid to the control by
calling:
PlaceHolder1.Controls.Add(myGrid)
-yuriy
Do you add your newly created control to the page? If you create your control
dynamically you need to add it to the page. The simplest way is to put a
PlaceHolder control at your web page and add your grid to the control by
calling:
PlaceHolder1.Controls.Add(myGrid)
-yuriy