Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - AlternatingItem Style in asp:table

 
Thread Tools Search this Thread
Old 07-20-2005, 03:07 AM   #1
Default AlternatingItem Style in asp:table



HI

How can i implement a AlternatingItem Style in a asp:table like in a
DataGrid?

ch Beffmans


*** Sent via Developersdex http://www.developersdex.com ***


Beffmans
  Reply With Quote
Old 07-20-2005, 08:06 AM   #2
=?Utf-8?B?SmFjZWsgU3Rhd2lja2k=?=
 
Posts: n/a
Default RE: AlternatingItem Style in asp:table
for (int i = 0; i < table.Rows.Count; i++ )
if (i % 2 == 0)
table.Rows[i].Attributes.Add("style", "background:red");
--
C# Dev


"Beffmans" wrote:

>
> HI
>
> How can i implement a AlternatingItem Style in a asp:table like in a
> DataGrid?
>
> ch Beffmans
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
>



=?Utf-8?B?SmFjZWsgU3Rhd2lja2k=?=
  Reply With Quote
Old 07-20-2005, 08:11 AM   #3
=?Utf-8?B?U2l2YSBN?=
 
Posts: n/a
Default RE: AlternatingItem Style in asp:table
Hello,

I don't think there is any direct way to do it but loop thru and the color
manually. Eg:

for (int i=0; i<Table1.Rows.Count; i++)
{
if (i%2 != 0) continue;
Table1.Rows[i].BackColor = System.Drawing.Color.Orange;
}

HTH

"Beffmans" wrote:

>
> HI
>
> How can i implement a AlternatingItem Style in a asp:table like in a
> DataGrid?
>
> ch Beffmans
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
>



=?Utf-8?B?U2l2YSBN?=
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
how to fill in asp:table? dhanalakshmi Software 1 10-10-2008 01:03 PM
OT: Awards ceremony, Australian style Johnston DVD Video 1 12-02-2006 01:50 AM
2006 LG's Holiday of Style Product Briefing Silverstrand Front Page News 0 10-26-2006 10:24 PM
Mike Meyers - I like your style Roger A+ Certification 1 08-05-2003 02:55 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46