ASP.NET MVC 4 is the fourth major version of the ASP.NET Model-View-Controller platform for web applications.

learn more… | top users | synonyms

0
votes
0answers
7 views

how to bind data to checkbox from viewmodel

i try to make a view model to show list of checkbox, when ID already in table of database, then chackbox will be chacked, but i cant make it. and i have error.. please help me CheckFacilityVN using ...
0
votes
0answers
9 views

MVC4: making the area work for beginner

I wanted to try and use area (just trying out). I added a area foo to my project: right click on the project then add area. That folder contains sub folders where I can add controllers, view, models ...
0
votes
0answers
5 views

Received parameter from ajax POST empty in controller + passed parameter in firebug MVC 4

I have looked over the net to figure out what my mistake is. All suggestions I found I tried, without any succes. I access the httppost action in my controller but the parameters stays empty. AJAX ...
0
votes
1answer
15 views

Should I be using an IAuthorizationFilter if I wish to create an ApiKey restricted resource with ASP.NET MVC4?

I have a few simple routes which I wish to restrict via a simple querystring param. If the key is incorrect or not provided, then I wish to throw a NotAuthorizedException. Please don't suggest I use ...
0
votes
2answers
16 views

How to check model values in View Model from Javascript in MVC4

I want to check that a Model value is NULL or NOT NULL in my view model in JavaScript, using mvc4. How would I check this? How do I get the values from my Model in JavaScript in the View model?
1
vote
1answer
14 views

What us the purpose of the Editable attribute if not to control editing on a field?

Nearly all my properties in my view model are decorated with [Editable(false)]', but when I scaffold a view, that usesEditorFor` these properties, they are all still editable on the form. Must I now ...
0
votes
2answers
12 views

MVC 4 Passing model from one controller to view and from view to other controller without users able to edit all fields

Im kinda new in MVC4 and im not able to figure it out. "CustomViewMOdel" "CustomViewMOdel" "ControllerX" ----------------> "VIEW" -----------------> "ControllerY" My ...
0
votes
1answer
10 views

authorization library for asp mvc 4 like Ruby on rails cancan

I am searching for authorization library for asp mvc 4 which works like cancan in ruby on rails (https://github.com/ryanb/cancan). Is there something like this?
0
votes
1answer
11 views

Error running MVC4 on Azure

We sometimes getting an error starting our MVC4 site on Azure. Never seen these errors on our local servers. After deploying the database and the application to Azure, troubles occur starting the ...
0
votes
0answers
8 views

Insert Process not working in Fluent Nhibernate

I'm new to Fluent Nhibernate and I'm stuck with a problem I need to insert data into my postgresql db but when I'm trying to insert it shows the following error could not insert: [Account][SQL: ...
0
votes
0answers
10 views

ModelState is false while posting editor view containing editor template

I have the following model class: public class BASLPAcademics { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int BASLPAcademicID { get; set; } ...
0
votes
1answer
11 views

How to design a dynamic page in Orchard?

I am developing an IT company's home website using orchard CMS. It has 8 different pages with Header and Footer remaining same throughout. I have created home page in Orchard from the admin panel ...
0
votes
0answers
5 views

Getting strange exception and dies when using OAuth 2.0 on DotNetOpenAuth based Provider Service via PHP script

I'm using DotNetOpenAuth version 4.3.0.0 via NuGet. I've developed a Service Provider using the following tutorial. https://github.com/DotNetOpenAuth/DotNetOpenAuth/wiki/Security-scenarios After ...
0
votes
0answers
7 views

How to solve multiple databases in one edmx for ASP.net MVC?

After I searched around on Google and Stackoverflow, I understand that I need to ask because I'm newbie about MVC. My question is How to use multiple databases on edmx? I think if I can put entity ...
0
votes
0answers
19 views

Combining ValidationAttributes and a condition, using composition

On my current project I have a view model that looks like this: public class DerpViewModel { public string Derp { get; set; } public bool HasMultipleDerps { get; set; } ...
0
votes
1answer
46 views

ASP.NET MVC4 - JavaScript (JQuery) not finding ID's on my view

I have my Index.cshtml view, and for some reason, the JQuery cannot find the ID 'rotatingImages'. The JavaScript IS firing though. For testing, I even put $('#rotatingImages').html('blah'); to see ...
1
vote
0answers
21 views

MVC JQuery dynamic table row remove makes my model null

I'm having a strange issue with removing a table row. I basically have a table listing out items from my model and I want to do a bulk edit. I also want to allow for a table row to be remove (before a ...
1
vote
2answers
29 views

Render HTML from JSON object returned from controller to jquery ajax call

In ASP.NET MVC 4 how can I render HTML on load. I am saving some html string encoded in this form in my sql server database as type nvarchar(max). ...
0
votes
0answers
21 views

How do I use my own database with SimpleMembership and WebSecurity? What is MVC4 security all about?

I've read everything on this topic I could find, including MSDN articles and SO posts, but I'm still very lost and confused. Questions Please answer the following (briefly, if possible): What is ...
1
vote
0answers
15 views

How to take Data and Database from SQL Server 2008 R2 and upload to Azure

I have generated scripts from my database that are data only and SQL Azure Database as a Script for Database Engine Type how ever when I publish the application to Azure, I get the following error: ...
1
vote
1answer
53 views

Controller doesn't redirect after form submit

I'm new to ASP.net MVC and I am struggling to make this work at the moment. I have a controller method called Add, it looks like this: public ActionResult Add() { // check user is authenticated ...
0
votes
0answers
6 views

bind GridViewDataComboBoxColumn in aspxgridview

I have created a grid using AspxGridview. The Grid has the following structure Date Column /ComboBox column/ Textcolumn and then a CheckBoxColumn When i run the project 1) The date field appears ...
0
votes
1answer
20 views

asp.net MVC 4 Areas: Controller has one action that is not generated while all others are

I've tried to step through this extensively and could not find the answer. There are about 30 methods defined that all map correctly but this single method does not. It differs because it has 3 params ...
0
votes
2answers
21 views

jquery-ui 1.10.2 tabs selecting

Using jquery-ui 1.10.2, I am unable to select a tab as usual. I am using $('.selector').tabs('select', '.selector'); as with earlier versions of jquery-ui. What is the replacement for this ...
0
votes
0answers
11 views

MVC 4, JqueryMobile not scrolling up or down on ios or android

Guys i am a bit of a noob with MVC but have used Jquerymobile in the past without any issue like this. My Project is a MVC 4 c# with Jquerymobile 1.3.0. It has a panel for a menu but does not scroll ...
0
votes
0answers
17 views

Can the ASP.net MVC MediaTypeFormatter for multipart/form-data and HttpPostedFileWrapper be used for a WebAPI?

I tried to port a file upload action method from a regular MVC 4 application to a WebApi action method. The regular MVC action signature was more or less like this: [HttpPost] public ActionResult ...
0
votes
1answer
21 views

no such method 'add' for tabs widget instance

I am using the jqueryui tab widget. I am trying to add tabs dynamically. I get the following error while try to call $('#id').tabs('add',...): "no such method 'add' for tabs widget instance" I am ...
0
votes
1answer
21 views

Is there a better way to get an older value after an EntityState.Modified in EF5?

I just want to know if it existe a better way to get the value in database after an EntityState.Modified. My syntaxe : db.Entry(UserProfile).State = EntityState.Modified; var olderPhoto = ...
1
vote
2answers
41 views

MVC4 : Get View or partial (file) name being rendered from extension method [duplicate]

Is there any way to get the file name (or view name) being rendered from an extension method. Something like : public static string Something<T>(this System.Web.Mvc.HtmlHelper<T> helper, ...
0
votes
2answers
19 views

Error pages not found, throwing ELMAH error with Custom Error Pages

I've made some modifications to Global.asax so that I can show custom error pages (403, 404, and 500) Here's the code: public class MvcApplication : System.Web.HttpApplication { ...
0
votes
0answers
15 views

Hide/Disable Weekends from Kendo UI dateTimepicker

I am using kendo DateTimePicker and just don't want user to select from Weekends. I have tried assigning MonthTemplate() aproach as follows: @(Html.Kendo().DateTimePickerFor(m => Data) ...
0
votes
0answers
13 views

Unobtrusive credit card validation not working once deployed

I'm running MVC4 and .NET 4.5. I applied the data annotations credit card validator to my model. I'm having issues with the client side validation. It works fine on my development box, but once ...
0
votes
1answer
16 views

SqlLite 3 - “Unable to open database”

I have created a SqlLite 3 db file and placed in my project's App_Data folder (ASP.Net Web API). I can't seem to connect to it. The exception message is vague and I cannot determine what is wrong. ...
0
votes
0answers
14 views

Mvc HtmlHelper chaining to generate Dropdown Submenu

I am developing a web application using MVC4 with Twitter Bootstrap. I want to create a custom dropdown menu HtmlHelper similar to this one ...
1
vote
0answers
26 views

MVC 4 View Knockout Bindings not updating on ajax call

I have gone through as many questions on here as I could find and tried all the different suggestions and cannot get this to work. I have a view that is bound with Knockout using the mapping plugin ...
0
votes
1answer
43 views

What is the difference between MvcHandler and HttpHandler

can you tell something about the difference between MvcHandler and HttpHandler? can we create our custom MvcHandler? I searched a lot at Google but could not found any reference in regards to the ...
0
votes
1answer
35 views

C# MVC 4: Create Word Document and download without saving in disk

This probably has a very simple answer but i just can't find it. I have a project using C# MVC 4 using Microsoft.Office.Interop.Word 12 In an action I try to dynamically create a Word file (using a ...
2
votes
1answer
48 views

ASP.net MVC4: Using a different model in a partial view?

I am just learning ASP.net MVC so please bear with me if I am bad at explaining my issue. Is it possible to use a different model in a partial view than what is being inherited in the view? My view ...
0
votes
0answers
23 views

Why is DisplayFormat DataFormatString not working?

I have a property in my view model as follows: [Editable(false)] [Display(Name = "Date")] [DisplayFormat(DataFormatString = "{0:yyyy/MM/dd}", ApplyFormatInEditMode = true)] public DateTime ...
0
votes
1answer
20 views

error in DbContext

I am working in 5 projects under one Solution and am working in MVC 4.5 . when i create an instance of the DbContext inherited Class then it give an error The type System.Data.Entity.DbContext is ...
0
votes
2answers
29 views

Javascript not being used and object reference error on submit of form with attached model

I am working on a password reset functionality for a website that updates a users password in a backend database. I am successfully able to change a users password by entering a strong password i.e. ...
1
vote
0answers
21 views

knockout mapping to be done only first time

I am generating the knockout mapping from server side view model using below var bindData2ViewModel = function (data) { var rdata = ko.toJSON(data); ko.mapping.fromJSON(rdata, {}, ...
0
votes
2answers
43 views

How to show a sidebar in all pages in mvc4 except 2

We currently have a site which has a section LatestNews, required:false defined in the layout and all views except two have the section which have the same call RenderPartial("ShowLatestNews") Is ...
0
votes
0answers
3 views

System.Resources.MissingManifestResourceException when Updating database

I moved a web application I am working on from one machine to another. It is built using .Net MVC and Entity Framework but when I execute the Update-Database command so that the database is updated. I ...
0
votes
1answer
15 views

Disable action method from being called from the address bar

I have a method in my controller that I don't want to be called from the address bar in the browser... Is there a way to do that? Maybe some kind of annotation, modification in the route ...
2
votes
3answers
28 views

Testing With A Fake DbContext and Autofixture and Moq

SO follow this example example and how make a fake DBContex For test my test using just this work fine [Test] public void CiudadIndex() { var ciudades = new FakeDbSet<Ciudad> { ...
0
votes
1answer
41 views

ASP.NET MVC DropDownListFor Model binding

I am trying to bind a dropdown to my model, but I am having issues. My model that is passed into my HttpPost function is NULL, but only if I try to bind to the "product" object's CategoryID field. If ...
0
votes
0answers
20 views

NHibernate Session Error: row was updated or deleted by another transaction

The error: {"Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect): [Credentialing.Domain.AllocateLog#Credentialing.Domain.AllocateLog]" Alright, so through my ...
0
votes
1answer
17 views

Unwrapping breeze Entity properties

I'm very new to breeze/knockout, but I'm 99% of the way to doing what I need to do. I'm using the Hot Towel template, and I'm successfully retrieving a list of items via breeze. The entity (ITBAL) is ...
0
votes
0answers
17 views

Styled breadcrumb navigation using MVCSiteMapPath

I'm using the MVCSiteMapProvider here: https://github.com/maartenba/MvcSiteMapProvider and trying to style my breadcrumb navigation so it has a look similar to ...

1 2 3 4 5 192