html tag, runat server - cant find required properties!!???

  • Thread starter Thread starter Milsnips
  • Start date Start date
M

Milsnips

hi there,

i have a <TD id="cell1" runat="server"> tag in my page which i want to set
either a backgroundImage or a Class, but neither of these properties appear
in the VB code when i type "cell1."

Any help on this issue?

thanks,
Paul.
 
Class attribute is exposed as CssClass property. For the b/g image, I
believe you have to use the Attributes collection: TableCell.Attributes.Add
("backgroundimage", "bg.gif")

hi there,

i have a <TD id="cell1" runat="server"> tag in my page which i want to set
either a backgroundImage or a Class, but neither of these properties appear
in the VB code when i type "cell1."

Any help on this issue?

thanks,
Paul.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top