Click here to Skip to main content
15,913,854 members

Comments by Chandan Aryan (Top 17 by date)

Chandan Aryan 21-Apr-12 14:04pm View    
hey i checked out this solution, but actually problem is this that if the excel sheet is in c drive then its work fine , but in other case.............
Chandan Aryan 18-Apr-12 9:02am View    
pls elaborate Your Question more and clearly what u want to do!
Chandan Aryan 11-Apr-12 15:37pm View    
foreach (DataListItem item in dlShift.Items)
{
RadioButton control = ((RadioButton)item.FindControl("rbShift"));
if (control.Checked==true)
{
obj.ShiftID = Convert.ToInt32(((Label)(item.FindControl("lblShiftID"))).Text);
obj.Charges = Convert.ToDouble(((TextBox)(item.FindControl("txtCharges"))).Text);
obj.Save_ShiftDetails();
}
}
Chandan Aryan 11-Apr-12 15:36pm View    
Its just a simple code , on button click m checking which button is checked but all buttons are false.
Chandan Aryan 11-Apr-12 15:27pm View    
I have Taken Care of all these things, but still its not working!!!