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.
1
vote
1answer
95 views
+50
Route Constraint breaks Authorize Attribute filter - MVC 4
After adding a routing constraint I noticed that when navigating to a URL which this routing constraint is applied, my application is no longer executing my authorize attribute filter.
...
1
vote
2answers
85 views
+100
Facing issue while trying to check the Incoming request in Fiddler
I am trying to check the incomming request to my server. Another server which has hosted MVC application. An action method is sending some data to my server. I am using Fiddler. But somehow it is not ...
1
vote
0answers
150 views
+100
ASP.NET MVC Model Validation Error Localization Context
First of all, I have to say that I understand how Data Annotation -based Model Validation works in ASP.NET MVC4 and I have it successfully implemented with DataAnnotationsModelValidatorProvider. So I ...
1
vote
1answer
59 views
+150
what is gr:get:User in Facebook Graph Api? Application Limit Reached Error
I have an app using facebook's javascript and c# sdk. One day I was getting the error 4 : Application request limit reached. In the facebook app dashboard I see this.
Too Many Calls - 1 hour, 50 ...
0
votes
3answers
83 views
+100
JavaScript confirmation is automatically posting form
I have a Partial View which contains a file input for uploading files(s). A User on this view will select a file from their workstation and click the upload button. The upload click submits the form ...
2
votes
1answer
99 views
+50
Keeping Simple Membership OAuth Session Alive
We are using the Simple Membership Provider with ASP.NET MVC 4, and we're using the Facebook Client to provide Facebook login support (similar to ...
3
votes
0answers
67 views
+50
Periodically seeing the ASP.NET error CS0656: Missing compiler required member
I'm seeing the following error crop up occasionally (seemingly at random) on my web application. We are running Windows Server 2008R2, IIS 7.5, MVC3, .NET 4.5.
It's the same error every time: ...
0
votes
1answer
37 views
+50
HttpModule only on specific MVC route
I have a custom IHttpModule that I would like to only work on a specific route.
For example : http://example.com/HandleAzureTask
I want this module to only be invoked/handled on the /HandleAzureTask ...
0
votes
1answer
51 views
+50
Storing search paramaters
I'm currently building a website in .NET MVC 4, using Entity Framework to access SQL Server.
The website should have a complex search with multiple choices for the user, create a new search (free ...