Click here to Skip to main content
15,922,512 members

Comments by FspFriends (Top 6 by date)

FspFriends 22-Mar-13 2:12am View    
Thanks daman!

But i'm not using GridView control here! i'm using table ans lables only. So how can i use this?
FspFriends 21-Mar-13 9:50am View    
Deleted
I have some labels only
FspFriends 2-Mar-13 8:36am View    
How can i give this line? DateTime firstDay = new DateTime(2013, 3, 1);

I have only MARCH 2013 both are strings
FspFriends 1-Mar-13 6:39am View    
foreach (GridViewRow gvrow in gvMISReport.Rows)
{
gvrow.BackColor = Color.White;
if (j <= gvMISReport.Rows.Count)
{
if (j % 2 != 0)
{
for (int k = 0; k < gvrow.Cells.Count; k++)
{
gvrow.Cells[k].Style.Add("background-color", "#EFF3FB");
}
}
}
j++;
}
gvMISReport.RenderControl(htw);


In this line it ll terminate
FspFriends 27-Feb-13 23:32pm View    
In this code I have a error on this line

gvMISReport.RenderControl(htw);