alternating

Get Alternating Row Status From DataGridView

Hi, if i change the backcolour of a datagridviewrow that belongs to a datagridview control using alternating row colours and i want to programatically change it back, how do i know if the row was a normal row or an alternating row so i know what colour to change it back to? is there a property i have missed? ...

PHP, alternating weeks logic

I need to write some code in PHP that performs an action only on alternating weeks, based on the day of the week (mon, tue etc) rather than the number (1st, 7th etc). So on a cycle starting on a Monday it should run for one week then not the following week. I am sure this must be easier than I think but can't seem to work it out, so h...

Simple jQuery works in HTML, not ASP.NET

jQuery noob here, trying to produce alternating row background colors. This works in HTML: <script type="text/javascript"> $(document).ready(function() { $('.stripedtable tr:even td').addClass(" evenrow"); alert("Just executed stripedtable jQuery in MasterPage"); }); </scrip...

Alternate layout views in single aspx page.

I want to make my ASPX page to look different based on some Object property. Assuming Customer is the object, I want to make Customer.aspx file layout different for both CustomerType.Regular and CustomerType.Vip values of the Customer.Type property. Theoretically it is possible for me to have two asp:Repeater controls with different Id'...