From: mcolson on 22 Apr 2010 16:50 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>
From: Family Tree Mike on 22 Apr 2010 17:04 On 4/22/2010 4:50 PM, mcolson wrote: > 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
From: mcolson on 23 Apr 2010 08:42 On Apr 22, 4:04 pm, Family Tree Mike <FamilyTreeM...(a)ThisOldHouse.com> wrote: > On 4/22/2010 4:50 PM, mcolson wrote: > > > > > 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 That may be a good question. I've been tasked with building simple page, but this is my first asp.net. Kind of learning as I go. I'll look into the asp.net table. Thanks.
|
Pages: 1 Prev: FTP Server Passive Mode Next: Posting a form to webserver using vb.net |