Hi,
I have a rating control on a page and a upload control. I am saving the files data into my database. I am using this handler to do this,
UploadProgressManager.Instance.AddFinishingUploadEventHandler("serverID1", new EventHandler<UploadFinishingEventArgs>(handler)); return View("MultipleUpload");
I need the value the user has selected on the rating control while I am processing my file how would I get this value?
Hi, Michael.
The igRating MVC helper has method called RatingFor(), and using it you will have the value automatically on the server. You can check Load And Save Rating Form Values sample to see how this is achieved and if you have more questions don't hesitate to ask them.
Best regards,
Nikolay
Hi Nikolay,
Thank you for the quick response. I have added RatingFor method;
Html.Infragistics().RatingFor(m => m.UserVote)
But when I try getting the value in the handler for the uploadfile it has no value. Does this have anything to do with the fact I am trying to get the value in the handler instead of on a post method?
Regards
Michael