I am creating a webform in .net in which approximate 14 fields are there .
I want to create a progress bar in the end of webform which will show the status of
form completion. if all the fields of form are filled than it will show 100% in progress
bar otherwise it will show some % according to the form status.
How can i accomplish this in .Net. Is there any there any kind of ajax extender for this particular work
You can just use two divs, and adjust the size of the inner div to show progress, as in this example.
When a field is edited, the “check” function is called, which checks the fields and updates the progress bar.