Is the .NET/Microsoft technology stack a financially viable option for a startup with limited finances?
I have an unpaid internship for a very new startup company with little tech experience that’s trying to be a Groupon clone. They’re currently using Wordpress and I’ve been trying to decide what web framework to push them towards, since I’ll have to learn that language and implement it as well.
Actions and Controllers managing strategy in MVC apps
Can anyone name any usefull strategy/architectural pattern for allocating actions between different controllers when using MVC pattern for developing web application?
Separation of development responsibilities in a new project
We have very recently started a new project (MVC 3.0) and some of our early discussion has been around how the work and development will be split amongst the team members to ensure we get the least amount of overlap of work and so help make it a bit easier for each developer to
get on and do their work. The project is expected to take about 6 months – 1 year (although not all developers are likely to be on and might filter off towards the end),
Where to put custom validation while using Entity Framework
I am using MVC3 and Enitty Framework 4 with the Database first approach. It created the context template with its own validation for the fields based on the database. My question is where should I put the other validation based on the buisness logic. Should I put it in the Context.tt file, should it go in the controller or should it go in a seperate model?
Using xml datatype to store a “shopping cart”
For my final project in school we have to develop an online shop. This shop should have a cart where items can be placed whether or not you are logged in. If you log out the cart shouldn’t empty and should still be shown.
Overcoming circular reference
I am working on an asp.net MVC web application which contains several projects.
ASP.NET Mvc3 – application/request lifetime and dependency injection
I thought of asking on SO, but it seems this is more of a “concept” type question than a “problem” type question. If it needs to be moved, please do so.
ASP.NET Mvc3 – application/request lifetime and dependency injection
I thought of asking on SO, but it seems this is more of a “concept” type question than a “problem” type question. If it needs to be moved, please do so.
MVC : Does Code to save data in cache or session belongs in controller?
I’m a bit confused if saving the information to session code below, belongs in the controller action as shown below or should it be part of my Model?
Single sign on if you do not have control of one or more of the client/web apps?
I have a customer who has a client app and when they log in to their client app, they will see a link to my website. When they click on the link, it should log in them in automatically to the website without asking for the credentials. Is this only possible if the username/password are the same between the client app and the website? Also, what if the username/password is not known for the client app? How is this handled? I have heard of technologies such as openId, oAuth, etc, but these don’t seem to fit my scenario where there is an existing client app that already has a membership base and it not needs access to my website.