Click here to Skip to main content
15,899,126 members

Comments by manu_dhobale (Top 19 by date)

manu_dhobale 30-May-17 7:58am View    
You have to go to app review settings, refer below link

http://fellowtuts.com/html-css/facebook-app-is-still-in-development-mode-dont-have-access/
manu_dhobale 24-Nov-16 3:17am View    
Please check updated solution
manu_dhobale 20-Nov-16 5:49am View    
Its just a if statement, alternatively you can write is as
int selectedYear = Convert.ToInt32(ddlYear.SelectedItem.Text);
int remainingmonth = 0;
if (selectedYear == DateTime.Today.Year)
{
remainingmonth = DateTime.Today.Month;
}
else
{
remainingmonth = 1;// jan month
}
manu_dhobale 17-Nov-16 13:25pm View    
share code including gridview structure
manu_dhobale 15-Nov-16 7:45am View    
Thanks..