Differnce between mvc and silverlight [closed] - asp.net-mvc

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
which is future of web technology of microsoft
silverlight or mvc asp.net i am really confused
iam good in asp.net but completely unaware with silvelight and mvc

Silverlight is a RIA technology from Microsoft, best thought of as a Flash competitor. It uses XAML as a markup language.
MVC is a software pattern, but also used as part the name of a web application framework by Microsoft that utilizes this pattern - ASP.NET-MVC. It is an alternative to webforms (ASP.NET) - noted for being easier to write tests for and for plug-ability of IoC containers, view engines and more.

Related

Separate Controller library in ASP.NET MVC Core framework Pros and Cons [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
I am new in ASP.NET MVC Core and have a small query regarding ASP.NET MVC Core framework.
Is it the best way to use a separate class library for Controllers in ASP.NET MVC Core framework?
Can anyone help me to provide some detailed Pros and Cons for a separate class library for Controllers?
There no reason to do this because what exactly are you separating? The controllers that you write are going to be specific to ASP.NET MVC so you can't reuse them with another framework. There are no pros, you are just making your project more complicated for no reason.

Is Asp.NET MVC Not Suitable For N-Tier Architecture? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Firstly, I have a question which already I know the answer but I want to ask;
Which one is manageable on HTML source?? Asp.NET Web Forms or Asp.NET MVC??
My second and important question;
Think a project which is big and expandable web project.. You sell something and control your agents with this project. You can give XML for your product range, and you would be able to add new products.. What does "Asp.NET Web Forms is more suitable for N-Tier Architecture and Asp.NET MVC is not" mean??
I would say that MVC is just as suited if not more so than Web Forms. Given the much clearer separation of the different parts in the MVC framework it lends itself very well to creating a solid N-tier solution. But with anything, if care is not taken in the implementation it really doesn't matter what framework you are using.

Is ASP.NET MVC a viable choice for a large project? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I want to use MVC for a big project, but I read in some website that this is not suitable for large projects.
Is this true? and are there examples of some great sites or application that have been written with this technology?
We built the site you are browsing with it.
StackOverflow is a 100k LoC ASP.NET MVC site, and is currently #66 #53 in the world for traffic according to Quantcast.
More in general, it matters much more how you use it.
Facebook is PHP based, twitter is Ruby based. Both are relatively slow interpreted languages, and yet, they work!

Lucene.Net in ASP .Net MVC application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Am currently looking to implement full text search in different pages of my asp .net MVC application and was thinking to use Lucene.Net to achieve this. I was hoping if someone could guide me through best practices how to achieve this in an asp .net MVC application with fluent nhibernate for multiple datatypes.
Thanks

Why did Microsoft Choose MVC to build ASP.net MVC? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I know what is ASP.net and I know what is MVC and some other Design patterns , my question is why did microsoft choose this design pattern ? why not ASP.net 3tiers or ASP.net AOP ...etc is it easier to program with , more powerful for building websites? in other words what are the advantages to use MVC instead of other Design Patterns with ASP.net?
MVC is a strong pattern and has proved very popular in other development communities including but not limited to Ruby on Rails. Wikipedia has a long list of MVC web frameworks. I guess Microsoft, didn't want to be left behind as more and more people migrated away from WebForms.
My guess would be that it is a proven and very suitable pattern for the web. MVC fits very well with the stateless nature of the http protocol. And many other big web frameworks for other languages use the MVC pattern.

Resources