avs:

If its a WebControl then you can acess it in codebehind already.

In codebehind you need this line:
yourtableid.width = intWidth


--
Elliot M. Rodriguez, MCSD
*** It would take 227 cans of Mountain Dew to kill me***



"avs" <amith.shetty@cbre.com> wrote in message
news:uRfM$b3VDHA.2316@TK2MSFTNGP09.phx.gbl...
> i have a variable declared on my code behind .vb page
> i need to access this variable from my .aspx page withing server controls.
>
> <td width=<%intWidth%> ></td>
> this works
>
> <asp:tablecell width=<%intWidth%> > </asp:tablecell >
> this doesnt work
>
> what is the syntax for the second case to work?
> Thanks in advance.
>
>