Click here to Skip to main content
15,920,217 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
We are having a legacy asp.net project. which is 3 tier asp.net architecture.
Now we are changing the design (new design) for few existing pages.can i develop this pages in mvc using telerik control. Is this allowed in dot net to have few mvc pages and few normal pages in the same project. Please explain Me.

And if this is not possible, which is best way to design page .. telerik controls or ajax controls or any thing else?
Posted
Comments
SwarupDChavan 11-Feb-14 5:22am    
Yes
RoopaSekhar 11-Feb-14 5:57am    
Could you please elaborate the answer.

Because ASP.NET MVC is part of the ASP.NET framework, almost all ASP.NET namespaces, class, and interfaces can be used in MVC applications,

ASP.NET MVC does not maintain state information by using view state, you must find other ways to manage state information, if you need it. In addition, server controls that rely on view state and postback will not work as designed in an ASP.NET MVC application.

Therefore, you should not use controls such as the GridView, Repeater, and DataList controls
The life cycle of a Web Forms page is complex, during which many events occur. These events are not supported in an ASP.NET MVC application, because the interactions between the model, view, and controller use a different life-cycle model
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900