AJAX :: Restrict Rating Only Once For Each User?

Aug 2, 2010

I'm displaying a set of school names in a datalist... A user logins and see the list of school names where he can give rating for each school....Now the question is how can restrict the user to give rating only once for each particular school...(i' hav used ajax rating control..)..

View 3 Replies


Similar Messages:

How To Restrict User To Do Rating Only Once

Jan 15, 2011

How to restrict user to do rating only once..i m using AjaxControlToolkit Rating Control i VB.NET !

View 1 Replies

AJAX :: Rating Control Average Rating And Postback On Same Rating?

Feb 20, 2011

I have a rating control that shows the average rating of a user supplied posting (think of a forum post that others will rate). So if the average rating for that posting is lets say 3 out of 5 all users will see 3 stars. If someone wants to rate the posting, then they could click lets say 4 stars and I save the rating to the database, re-average the current rating and display the result (which may or may not still be 3 at this point). So far so good. The problem comes in when a user wants to agree that it's 3 stars. Since the rating control currently shows 3 stars, choosing 3 again does not cause a postback. In my case even though the value didnt technically change, I need to capture the users choice so I can average it in and save that users rating. I also modify the UI so that I can show each user of the site what he/she choose as a rating.How can i get the control to let me know that a user choose a star rating even if its the same one the control is currently displaying?

View 3 Replies

AJAX :: How To Use Rating Control For Song Rating In A Musical Website

Jan 29, 2011

I am now doing a project mobile musical website. I have used Ajax Toolkit in my last project and so that I know how to install it and work with it...

I have used CalenderExtender, TextboxWatermark, Password Strength, etc. But I am not familiar with the rating control. How does it work ?

View 1 Replies

AJAX :: Implement Half Star Rating Using Rating Control

Aug 18, 2015

Article [URL] .....

Above article show rating only integer part .

How can i show decimal rating on ajax rating control not any labels?

View 1 Replies

AJAX :: How To Give Half Rating In Rating Control

Oct 11, 2013

I am using AJAX Rating Control.I want half star rating.For Example,If My AVG Rating Count is 3 Then My Stars Wants to be show 3If My AVG Rating Count is 2.5 Then My Stars Wants to be Show 2 1/2 mark i.e., two & half stars.But,it was not showing then also it is showing 3 stars.

View 1 Replies

AJAX :: Validate Rating Control To Avoid Multiple Ratings By User

May 7, 2015

I am using [URL] ....

And my question is the user should not vote again if he/she already voted....

View 1 Replies

AJAX :: Restrict User To Select Future Date In Calender Control?

Mar 10, 2011

[Code]....

i m using calenderExtender control, here i want to restrict the user not able to select future date its also working fine , now i want to restrict the user cant select future date than current day+7 (next day)

for ex:

if today is 10 march then he can select next 7 days means till 17 march bt he cant select 18 march

View 1 Replies

AJAX :: Restrict User To Type Further If Input Doesn't Retrieve Any Value From Database Using Autocompleteextender?

Aug 25, 2010

I am retrieving list of projects and project IDs using autocompleteextender. Is it possible to restrict the user to type further if the input doesn't retrieve any value from database. Though, I have found a solution by calling function through OnClientPopulated. But this function calls back the webservice "GetCompletionList" method. I don't want to recall one method two times. is there any other way?

View 1 Replies

AJAX :: How To Restrict User For Selecting End Date Less Than Start Date In Calendar Extender

May 7, 2015

I am using AjaxCalendar Toolkit :

<asp:TextBox CssClass="form-control" ReadOnly="true" runat="server" id="StartTime"></asp:TextBox> <asp:CalendarExtender ID="Start_CalendarExtender" runat="server" Enabled="True" TargetControlID="StartTime">
</asp:CalendarExtender>
<asp:TextBox CssClass="form-control" ReadOnly="true" runat="server" id="EndTime"></asp:TextBox> <asp:CalendarExtender ID="Start_CalendarExtender" runat="server" Enabled="True" TargetControlID="EndTime">
</asp:CalendarExtender>

And On Page Load i have done this to avoid selecting previoud dates in start date :

protected void Page_Load(object sender, EventArgs e)
{
Start_CalendarExtender.StartDate = DateTime.Now;
}

Now i want to do that user cannot select end date less than start date , e.g if he choose 2-July-2014 ( as a start date) then he could not choose (1-July-2014) as End date , dates prior to Start Date must get disabled in End Date Calendar Extender.

View 1 Replies

Rating Control Current Rating To Double Rounding?

Mar 19, 2010

I am trying to convert 22 rating control currentrating values to a double instead of int

I am also displaying in a label control so it is converted to String here is what I have

[Code]....

My display label displays

Rating is x stars out of 5.0 stars

I also record the results in a decimal 1.1 form

I did Convert.ToDouble(rate1.CurrentRating) + Convert.ToDouble(rate2.CurrentRating) .....

but I get a 7 digit after 0 return, how do i round that to a single point?

View 1 Replies

User Controls :: Restrict User To Enter Only English Or Arabic Characters In TextBox

Oct 14, 2012

I want user to enter name in Arabic if the user enter in english it should give Message " Enter Message In Arabic " and same for English if user try to enter in arabic it should give a message "Enter Name in English" ...

View 1 Replies

Web Forms :: Restrict User To Edit Particular Records If Other User Is Editing Them In SQL Server?

Oct 29, 2012

how to restrict the other user if one works on the particular record.

i am having a table with the name tblProduct and i used to edit the records from the code behind using my website.

When one user login into the site and  search for the particular products and edits the product and at the same time other user log in and try to edit the same product, i need to show the alert message, "the user (username) is already working on this. please wait for a while."

View 1 Replies

User Controls :: How To Restrict User To Some Actions

Nov 21, 2013

I have 2 types of users- administrator and students..

now whenever login...

a student can only add their their info, view other students' info and perform some other basic actions, and

an administrator can view the students' info, select & reject them for some particular criteria.

What can I do for these two types of users for control their activities??..

View 1 Replies

AJAX :: Star Rating With Decimals?

Aug 30, 2010

s there any way i can make the star rating to take half a star?

i have rating out of 5 and it can be any decimal between 1 and 5 (ex. 3.21, 1.75, etc)

I want to mark these numbers with half a star, so is it possible?

also i want the actual number (ex. 3.21, 1.75, etc) to be shown in the tooltip

how to do these 2 things?

View 2 Replies

AJAX :: Rating Control Not Available In Code Behind?

May 4, 2010

I am using a Rating Control in my .ASPX page, but in the Page_Load in my code-behind, for some reason, can't access this control to set some properties of the control. Why is this happening and how can I access it in my code behind? Below is where the rating is set, but when I try to access ratingSystem. , nothing is coming up for me in Intellisense, and if I just type it anyway and compile / build, it gives me errors.

<asp:Content ID="Content2" ContentPlaceHolderID="PageBody" Runat="Server">
<asp:UpdatePanel ID="UpdatePanel2" UpdateMode="Always" runat="server">
<ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>

[Code]....

View 2 Replies

Restrict The User Without Login?

Feb 15, 2011

i created some pages in asp.net. but i want to allow the users only if he is login. how to do that. is there any controls available for that one.

View 3 Replies

AJAX :: Rating Control Bind With Database

Apr 23, 2010

i am trying to bind rating control from my database. example like. Orkut Answer streangth. i have three option Yes, No and cant say and according database value, i want to show stranth for that option.

View 2 Replies

AJAX :: How To Resolve The Rating Unhandled Exception

Jun 24, 2010

I am using ajax rating control, but i get the following error on change of rating , the funnest part is i get this error for every alternate submission, 1st time i click on rating stars it happen without error but 2nd time i do the same then error throws, for 3rd time no error , for 4th time again error and it continues "An unhandled exception has occured:

The target 'ctl00$ContentPlaceHolder1$dList$ctl00$Rating1' for the callback could not be found or did not implement ICallbackEventHandler." hope i get an ans for this funny kind of issue.

View 1 Replies

Ajax Half Star Rating Control?

Mar 18, 2011

Is there a half-star rating control I can use for asp.net/ajax

View 1 Replies

AJAX :: Images Of Rating Control Is Not Displaying?

Mar 17, 2011

I am using a Ajax Rating Control in Web User Control(".ascx").

The Images used for this control is not displaying in the browser, even though the control is getting loaded.

When i use the same code in the Aspx page it is working fine. It is only problem in Web User Control.

View 1 Replies

AJAX :: Rating Control Can't Have Currentrating Higher Than 5?

Jan 21, 2010

I have this:

[Code]....

This code throws an error:CurrentRating must be greater than MaxRatingParameter name: CurrentRatingWhen I change the code to this, it DOES work:

[Code]....

View 2 Replies

AJAX :: Rating Control Not Rendering In Webpage?

Feb 21, 2011

I have placed a ratngs control like the one shown in the tutorial. When I debug the page, I cannot see the ratings control. However I can hover over where the control is, and it will show the ratings tooltip (e.g. 1, 2, 3, 4 and 5), but no stars.

View 2 Replies

AJAX :: Multiple Rating Controls On One Webform?

Nov 13, 2010

I have the asp ajax rating control in webusercontrol that is apart of a repeater but i noticed that I can only edit the first rating control why is that???

Do i need to change the client ID somehow that they are unique???

View 2 Replies

AJAX :: How To Use Rating Control Inside DataList

Jan 25, 2014

How to use AJAX Rating Control inside ASP.Net DataList

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved