Click here to Skip to main content
15,916,600 members

Comments by itskvini (Top 11 by date)

itskvini 15-Oct-12 3:06am View    
In gvDetails_RowCommand, may be you are getting any one of these text boxes txtUsrName, txtCity, txtdesignation as null.
Please check.
itskvini 10-Oct-12 8:47am View    
I have checked. Everything seems to be working properly, the issue is the event itself is getting called after very long time.
itskvini 10-Oct-12 8:45am View    
not set, so its true
itskvini 5-Oct-12 3:02am View    
use
using yourNameSpanceName in insert_customer class.
itskvini 4-Oct-12 0:50am View    
Also don't use condition like
if(args.row.Cells[22].text == "True")
Convert it to boolean if the values are "True" or "False", use
if(Convert.ToBoolean(args.row.Cells[22].text))