Tagged Questions
2
votes
1answer
169 views
Creating a shared library that might be used with desktop applications and web projects
I have been involved in a number of MVC.NET and c# desktop projects in our company over the last year or so while also managing to kept my nose poked into other projects (in a read-only learning ...
6
votes
2answers
2k views
Use-cases for node.js and c#
I do quite a bit of ASP.NET work (C#, MVC), but most of it is typical web development. I do Restful architecture using CRUD repositories. Most of my clients don't have a lot of advanced requirements ...
1
vote
5answers
441 views
First ASP.NET WebForms application completed, should I jump into MVC now? [closed]
I just finished my first Asp.net intranet application using WebForms, and now I am considering learning MVC.
My questions are:
I mainly use LINQ for CRUD purposes instead of SQL, should I also ...
10
votes
3answers
453 views
What are the disadvantages of using/writting a .Net Custom Membership Provider?
Recently, I posted the following question on SO: http://stackoverflow.com/questions/7197337/using-asp-net-membership-provider-with-an-existing-user-database
As you may notice, I ended up answering my ...
4
votes
4answers
278 views
What's the correct approach for passing data from several models into a service?
I have an AccountModel and a page where the user can upload a file. What I would like to have happen is when the user uploads the file. The PageController does something like the following. this is ...
3
votes
2answers
684 views
In MVC where do you put action methods for views in the shared directory?
I have a website built using a MVC.NET framework with C# that uses some shared views and partial views. In order to display the views properly there is a bit of code that must reside in the ...