Hardik Patel

Hardik Patel

  • NA
  • 378
  • 459.1k

how to add progress bar during insert records?

Aug 17 2013 12:36 AM
how to add progress bar during insert records?

cn.open();
string str;
str ="Insert into tables values ()";
sqlcommand cmd =new sqlcommand(str,cn);
int i =cmd.executenonquery()
if (i>0)
{
// i want progress bar here 
response.write ("record save");
}


Answers (5)