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");
}
Loading
Sunny SharmaPosted Aug 17, 2013, 2:20 AM
If you want to show a pre-loader kind of animation then go with Sanjeeb's link and if It's a Progress-Bar as you've mentioned in your question, go with link provided by Iftikar, i.e.:
http://www.codeproject.com/Articles/18877/ProgressBar-for-ASP-NET
Happy Coding :)
Iftikar HussainPosted Aug 17, 2013, 2:15 AM
Please refer the below link for implementing progress bar in asp.net
http://www.codeproject.com/Articles/18877/ProgressBar-for-ASP-NET
Regards,
Iftikar
Hardik PatelPosted Aug 17, 2013, 2:05 AM
Sunny SharmaPosted Aug 17, 2013, 1:01 AM
What platform are you using? WinForms or Web Form ?
Sanjeeb LenkaPosted Aug 17, 2013, 12:54 AM
http://www.aspdotnet-suresh.com/2010/10/how-to-show-progressbar-during.html