how can get reference to web user controle (.ascx form) aspx "table"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,
can some one tell me snip code to get reference to web user controle (.ascx
form) aspx "table" and its rows & cells.
regards
Sam.
 
If you have a web user control (.ascx) on a page, then you can add the
definition to your code:

protected MyControlType MyControlId;

The control needs to expose its controls (internal/public fields, instead of
protected).

-Michael
MVP
 
Back
Top