I want to make a page in which start date and expiry date is there. I want to draw a colored status line that color of line is changed when the expiry date is near i.e. the color of line can be changed according to each quarter.
I want to make this page in asp.net and Jquery. I am very new to jquery. please hepl me it is urgent.
Loading
Suraj SahooPosted Jan 17, 2015, 11:24 PM
Here you need to check everytime the page loads, retrieve the start date, expiry date and check the difference between them in months. Return the month from the server and get it on the Script file using ajax call(the above call and return will be based on the ajax call). Then in the success method of the ajax,
Set the color or the progress bar meter as per the return value.
$.ajax({
url:"/CONTROLLER/GetTheDiffMonths",
type:"GET",
success: function(){
//Do the job here of the set color or increase progress...
}
});
Thanks.