Tagged Questions
11
votes
3answers
999 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 ...
9
votes
2answers
7k 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 ...
7
votes
3answers
266 views
Is it safe to assume that one controller will only ever use one primary model?
So, I'm designing an MVC framework. In the name of keeping everything statically typed and non-magical, I've come to quite a problem with "automatically" passing models to a controller.
So, ...
6
votes
3answers
4k views
Best Architecture for ASP.NET WebForms Application
I have written an ASP.NET WebForms portal for a client. The project has kind of evolved rather than being properly planned and structured from the beginning. Consequently, all the code is mashed ...
5
votes
4answers
294 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 ...
4
votes
4answers
266 views
Where is it permissible to add logging code in a MVC model?
Working on a C# WinForms program that is written in a MVC ( actually Model-View-Presenter) style and I want to add a few lines of code that is responsible for logging some events. Where should I ...
3
votes
1answer
531 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 ...
3
votes
2answers
2k 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 ...
2
votes
1answer
386 views
Making Modular, Reusable and Loosely Coupled MVC Components
I am building MVC3 application and need some general guidelines on how
to manage complex client side interaction between my components.
Here is my definition of one component in general way:
...
1
vote
5answers
738 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 ...
-1
votes
3answers
133 views
Host an MVC 3 with Razor syntax app on old server
I just started a new job, I have to create a web app for them and host it on their intranet on an Windows 2003 R2 server with SQL server 2008.
As said in the question, I'll work on a MCV3 with Razor ...