Open source projects using asp.net mvc + silverlight [closed] - asp.net-mvc

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any open source projects using both asp.net mvc and silverlight together?

I guess one of the largest open source projects that are using asp.net MVC and silverlight would be the mono project. They have gone and recreated asp.net mvc and silverlight as mono mvcand moonlight, though I would guess that you're looking for 'applications' or 'sites' that use these two technologies.
Two large projects that do use asp.net MVC as expected are Micorosoft's Orchard CMS and Rob Conery's Kona Project. Althought I do not think that these have silverlight included with them. I think that both are pure MVC applications.
Good luck in your search, and hope this helped some.

i couldn't find an open source project (doesn't mean they don't exist) but here is some good resources about mvc with silverlight here and here

Related

Is there an open source equivalent of ServiceStack AutoQuery for asp.net core? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I would like to know if there is an open source equivalent of AutoQuery From ServiceStack for asp.net core (or asp.net) which can automatic query with the orm i use: ef core (or other) with uris like http://domain.wyz/api/users?ages=16,17,18
I know OData and i don't want to use it.
Thanks for your answers.
For those who want, I have started a new project to enable automatic query with asp.net core and ef core :
https://github.com/trenoncourt/AutoQueryable
From the last release ServiceStack now runs on .NET Core where 21 of ServiceStack's most popular NuGet packages are available in .NET Core. As part of the release many existing Live Demos were ported to .NET Core including the Live Demos below which make use of AutoQuery:
http://northwind.netcore.io
http://stackapis.netcore.io
Which both have AutoQuery UI plugin enabled:
http://northwind.netcore.io/ss_admin/autoquery/QueryCustomers
http://stackapis.netcore.io/ss_admin/autoquery/StackOverflowQuery

Layout/design templates for MVC application? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any open source design templates available for asp.net MVC projects? Tired of seeing the standard blue and white look that every mvc projects have.
If you understand html/css you can take benefit of all websites that offers free template, to name but a few:
http://www.oswd.org/
http://www.sixshootermedia.com/free-templates/
http://www.opendesigns.org/
That's just a matter of applying them to your ASP.NET MVC Website (override the default CSS and updating the _layout markup), see this article.
Or there is the MVC Contrib Template gallery.
Those template sites seem to be outdated now and no longer kept going, just fyi.
http://oswd.co and http://html5up.net look to be more recent with the latter having a lot of HTML5 templates to choose from.

Is there a Asp.net Mvc sample application with N layers? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm looking for sample asp.net mvc application of medium size (preferably a blog engine) built using layered architecture and DI (preferably Ninject) so I can compare my coding practices with the sample application.
If there is some tutorial available with sample app, it will be like jam to the cake. If there is such open source project going on that I can join and work on it will be great too.
Check out the downloadble code for the great book Pro ASP.NET MVC 2 Framework, at http://www.apress.com/9781430228868 .
It contains a full componentized MVC application using Ninject as a DI container. It's a lovely project to learn from, based on a great book I highly recommend.
I blogged about a blog engine here: http://www.palmmedia.de/Blog/2011/2/7/asp.net-mvc-3-razor-based-blog-engine-with-sql-ce-4.0
It is based on ASP.NET MVC 3 and SQL CE 4.0. Unity is used as DI container.

Differnce between mvc and silverlight [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 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.

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