|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP table background colorprogamatically change the color of table1 in my aspx.vb code based on conditions. How do I connect to the table's properties? <form id="form1" runat="server"> <div> <table class="style1"> <tr> <td> <table class="style1"> <tr> <td style="background-color: #009900"> <<----- I neeed to change this. </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> </div> </form> On 4/22/2010 4:50 PM, mcolson wrote:
Show quoteHide quote > I have a table1 within a table2 within a form. I would like to You can add the attributes runat="server" id="MyCell", and then address > progamatically change the color of table1 in my aspx.vb code based on > conditions. How do I connect to the table's properties? > > <form id="form1" runat="server"> > <div> > > <table class="style1"> > <tr> > <td> > <table class="style1"> > <tr> > <td style="background-color: #009900"> > <<----- I neeed to change this. > </td> > <td> > </td> > </tr> > <tr> > <td> > </td> > <td> > </td> > </tr> > </table> > </td> > <td> > </td> > </tr> > <tr> > <td> > </td> > <td> > </td> > </tr> > </table> > > </div> > </form> the cell from the server side, setting the BgColor property. Your code then would be MyCell.BgColor=Color.Red, as an example. Out of curiosity, why are you using HTML tables rather than asp.net tables? -- Mike On Apr 22, 4:04 pm, Family Tree Mike <FamilyTreeM***@ThisOldHouse.com>
wrote: Show quoteHide quote > On 4/22/2010 4:50 PM, mcolson wrote: That may be a good question. I've been tasked with building simple> > > > > I have a table1 within a table2 within a form. I would like to > > progamatically change the color of table1 in my aspx.vb code based on > > conditions. How do I connect to the table's properties? > > > <form id="form1" runat="server"> > > <div> > > > <table class="style1"> > > <tr> > > <td> > > <table class="style1"> > > <tr> > > <td style="background-color: #009900"> > > <<----- I neeed to change this. > > </td> > > <td> > > </td> > > </tr> > > <tr> > > <td> > > </td> > > <td> > > </td> > > </tr> > > </table> > > </td> > > <td> > > </td> > > </tr> > > <tr> > > <td> > > </td> > > <td> > > </td> > > </tr> > > </table> > > > </div> > > </form> > > You can add the attributes runat="server" id="MyCell", and then address > the cell from the server side, setting the BgColor property. Your code > then would be MyCell.BgColor=Color.Red, as an example. > > Out of curiosity, why are you using HTML tables rather than asp.net tables? > > -- > Mike page, but this is my first asp.net. Kind of learning as I go. I'll look into the asp.net table. Thanks.
FTP Server Passive Mode
Running an ActiveX EXE from VB2008 app Run Unix shell script from VB.NET Is that a blank in your TextBox ... How to build the form with details button? Upgrade 2008 to 2010 MailMessage message size problem in saving image How Does ComboBox Determine What To Display? vb.net 2008 display and print directory/subdirectories |
|||||||||||||||||||||||