The ASP.NET MVC Framework is a Microsoft web application framework that implements the model-view-controller (MVC) pattern. The latest release of the framework offers REST-style web services development capability, also known as Web API.
2
votes
1answer
116 views
+50
MVC WebApi endpoints do not work on production, but regular endpoints do
I have an ASP.NET MVC project that runs perfectly locally. It has some controllers that inherit from Controller and some that inherit from ApiController. My routes are below. When I run the project ...
3
votes
1answer
104 views
+100
Ninject - Request scope has already been disposed
I'm using Ninject and the extensions EventBroker and DependencyCreation in an MVC 3 application. I've installed and am using the Ninject.MVC3 package and therefore the OnePerRequestModule.
I'm ...
0
votes
0answers
56 views
+50
MVC: Application has no errors but returns a blank page in IE
Sorry if this this not too specific. I could not make it more specific as I do not understand the issue
I have an MVC application which ran well, and was I even published it. After modifying it, when ...
0
votes
0answers
77 views
+100
Is it possible to dynamically create a Entity Framework Entity Data Model?
I would like to realize a dynamic query builder using ASPNET MVC; i will ask the user db parameters (hostname, db, user, passwd) and then would like to use Linq to query the database using Entity ...
1
vote
2answers
103 views
+50
Listing the contents of a database file which is to be displayed in a View
I'm using an open source fingerprint recognition program written in C# (SourceAFIS) which stores the enrolled users in a .dat file.
To read from the .dat file I use:
List<MyPerson> database = ...
0
votes
0answers
48 views
+50
Manually trigger foolproof validation
I'm using Foolproof Validation so I can use [RequiredIf] attributes on my view model. The problem is that I'd like to trigger validation within my code using the same logic outside a controller.
...