Hi,
I have written following controller :
public ActionResult ProgressBarDisplay()
{
int count = 0;
// reads the count from database and updates the count
double percentage = (count / 9) * 100;
return View(percentage);
}
I have to read this in view and display in UI as progress bar (with the percentage value) using MVC.
Can anybody please let me know what is the best way to acheive this functionality ?
Kindly waiting for your response.
Thanks,
Santosh

