The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern.
1
vote
4answers
280 views
Which ASP.Net programming model is closer to PHP?
I've been using ASP.Net WebForms for the last year or two at work for development, but I've used PHP for personal projects for 10 years. So, I'm far more adept at developing with PHP.
When it comes ...
2
votes
1answer
60 views
Implementing User Authentication on an N-Tier Web Application
I appreciate all help and feedback. Parts bolded are critical parts if this is too verbose. Perhaps it will help to mention I am a green developer. I have found some useful info from related ...
3
votes
2answers
205 views
Update strategy for a software framework once it has been deployed
I need to update a software framework once it has been deployed.
The framework we are creating is made up of .NET 4.0 libraries (in Visual Studio). This common set of code libraries will be ...
15
votes
8answers
2k views
What do you do when a client requires Rich Text Editing on their website?
As we all know by now, XSS attacks are dangerous and really easy to pull off. Various frameworks make it easy to encode HTML, like ASP.NET MVC does:
<%= Html.Encode("string"); %>
But what ...
2
votes
1answer
196 views
In what situations will Windows-based authentication for my ASP.NET MVC web application fail to allow users from accessing the web application?
My requirements are:
To build an ASP.NET MVC web application to use Windows-based authentication, since all the users which will be accessing the application are our internal employees, and they ...
0
votes
2answers
502 views
MVC or Extract Service Layer
we have an application that is built with .Net MVC. We are now tasked with exposing API's to third parties. Members on our team want to just continue down our current path and just use more ...
1
vote
3answers
70 views
ASP MVC Action parameters all strings vs explicit type
A colleague and I were developing an ASP.NET MVC project and during this we created a new action method to handle one of our views. I initially started created the action like so:
public ...
3
votes
2answers
461 views
What .NET objects should I use to create a cookie based session in MVC?
I'm writing a custom password reset application that uses a validation technique that doesn't fit cleanly with ASP.NET Membership Provider's challenge questions.
Namely I need to invoke a workflow ...
7
votes
1answer
461 views
call a function and never wait for it in C#
I have a controller in my mvc4 web application in which there is an action that needs to call another function. What happens in that function i.e. the return value is not important for my action. How ...
3
votes
2answers
388 views
Mixing Angular and ASP.NET MVC/Web api?
I come from using ASP.NET MVC/Web API and now I am starting to use Angular but I am not clear on the proper way to mix them.
Once I am using Angular does the MVC sever side concepts still provide any ...
1
vote
2answers
82 views
Identity and Access Control in Web API vs WCF
Our team is looking to introduce Web API, MVC/ASP.NET implementation in our SOA. I am having a hard time trying to wrap my head around the identity and access control it has compared to WCF.
WCF has ...
1
vote
1answer
115 views
Good resources for a MVC.Net developer going back to WebForms? [closed]
Well it looks like I may be forced to build a new system in webforms after having worked exclusively in MVC for the last 3 years.
Initially I didnt think this was going to be a problem except the ...
1
vote
2answers
101 views
Encapsulation in Domain Driven Design models?
I am using EF Code First and I had a model like below.
public class Account
{
[Required]
public string AccountNo { get; set; }
[Required]
public decimal Balance { get; set; }
}
I ...
0
votes
1answer
67 views
common infrastructure for web apps using asp.net mvc
How to build a common infrastructure for my web apps using asp.net mvc, and efficiently manage it?
The goal is to increase developer productivity. The common infrastructure stuff includes visual ...
12
votes
4answers
1k views
How much sense does it make for a veteran .Net developer to move to ROR professionally? [closed]
I consider myself a moderately skilled (definitely not stupid) .Net developer. Over the past 5 years I've been working with ASP.Net, ASP.Net MVC, SharePoint, WPF, Silverlight, RDBMS (SQL Server and ...