I am using Asp.net mvc telerik Controlls in my application.
Can we use RAD Controlls in my asp.net mvc? application?
If not why so? what is the problem we can not use those controlls in Asp.net mvcv?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t use those controls in an ASP.NET MVC application because they rely on ViewState and PostBack model, all notions that no longer exist in MVC. Also those controls use DataSources to bind their data. Data Sources are no-no in MVC.