Hello friends, I'm using Telerik Ajax Manager Rating system that works like Microsoft rating system but there is a little difference in that, when i rating the article and click on Post button it shows the rating and feedback in a CSS panel bar but i want that when i rating the article and click on post it will be store in database with ajax technique and after that when i hover in rating bar it display that Thank you for your feedback. or you have already rated this article. I can show you my Post Button code behind:
Protected Sub btnPostComment_Click(ByVal sender As Object, ByVal e As EventArgs) If Me.lblHiddedStars.Value.Length > 0 Then Me.lblInsertedComment.Text = Me.txtComments.Text Me.lblInstructions.CssClass = "" Me.lblInstructions.Text = "Your feedback:" Me.lblSelectedStars.Text = (Int32.Parse(Me.lblHiddedStars.Value) + 1).ToString() Dim str As String = "CloseToolTip1();" ScriptManager.RegisterClientScriptBlock(Me.Page, GetType(Page), "closeTooltip", str, True) Else Me.lblInstructions.CssClass = "InsertComment" Me.lblInstructions.Text = "Please rate this page first." End If End Sub