Posts Tagged ‘AJAX Rating Control’

ASP.NET AJAX Rating Control using Star

Rating Ajax Control To Use Ajax Star rating Use this code. There Are many code available (1) Simple form binding <script type=”text/javascript”> var s1 = new Stars({ maxRating: 5, bindField: ‘myRating’, imagePath: ‘images/’, value: 4.5 }); </script> (2) JavaScript callback function <script type=”text/javascript”> function rating(val) { alert(‘You rated it ‘ + val + ‘ star(s)!’); [...]