Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
5k views

ASP.NET MVC 2 problem with UpdateModel

I'm trying to use updatemodel(myItem, formcollection) with asp.net mvc 2 but it fails with the stack trace below. at System.Web.Mvc.FormCollection.GetValue(String name) at ...
13
votes
4answers
3k views

What is correct behaviour of UpdateModel in ASP.NET MVC?

I am interested to know what you guys feel should be deemed "correct behaviour" in terms of the UpdateModel method in ASP.NET MVC. The reason I ask here is perhaps if this functionality is "by ...
9
votes
2answers
6k views

ASP.NET MVC UpdateModel with a sorta complex data entry field

how do i do the following, with an ASP.NET MVC UpdateModel? I'm trying to read in a space delimeted textbox data (exactly like the TAGS textbox in a new StackOverflow question, such as this) into the ...
8
votes
2answers
496 views

How to update Model when binding to a ViewModel?

I have an [HttpPost] action method signature like this: [HttpPost] public ActionResult Edit(ExistingPostViewModel model) { // Save the edited Post. } Now, in the past (when i didn't use ...
6
votes
1answer
2k views

Entity Framework - Update Model From Database… - no update happens!

I have a table in my DB called CompanyDetails. It has a column called CharacterID varchar(255). I just changed it from a NOT NULL column to a NULL column. I ran the 'Update Model From Database...' ...
6
votes
3answers
2k views

Calling UpdateModel with a collection of complex data types reset all non-bound values?

I'm not sure if this is a bug in the DefaultModelBinder class or what. But UpdateModel usually doesn't change any values of the model except the ones it found a match for. Take a look at the ...
5
votes
3answers
457 views

ASP.NET MVC: Is UpdateModel an “expensive” operation (due to Reflection)?

I wondered whether UpdateModel is considered an "expensive" operation (due to Reflection lookup of the model properties), especially when seen in the context of a larger web application (think ...
5
votes
3answers
560 views

Can't seem to get IncludeProperties working on UpdateModel in ASP.NET MVC

Has anybody had luck with this? Please let me know if I understand it correctly, if I have a simple model let's say with: public string Name { get; set; } public string Details { get; set; } public ...
5
votes
3answers
2k views

How do I Unit Test Actions without Mocking that use UpdateModel?

I have been working my way through Scott Guthrie's excellent post on ASP.NET MVC Beta 1. In it he shows the improvements made to the UpdateModel method and how they improve unit testing. I have ...
4
votes
3answers
103 views

What Does UpdateModel() Do?

In layman's terms, what does UpdateModel() do, as well as TryUpdateModel()? I can't seem to find (on SO or the web) any clear explanation of what it actually does (in clear terms), just people having ...
4
votes
3answers
2k views

asp.NET MVC 2 DataAnnotations UpdateModel<T> validation

I'm trying to use DataAnnotations to add validation to my models in asp.NET MVC 2 RC2, using TryUpdateModel var user = UserManager.Find(id); ...
4
votes
2answers
2k views

ASP.NET MVC 2 RC model binding with NHibernate and dropdown lists

I have problem with model binding in my ASP.NET MVC 2 RC application that uses NHibernate for data access. We are trying to build the application in a Ruby on Rails way and have a very simple ...
4
votes
2answers
549 views

asp.net mvc strongly typed view model with multiselect

I would like to know how i can bind my form values to my strongly typed view from a MultiSelect box. Obviously when the form submits the multi-select box will submit a delittemered string of my ...
4
votes
1answer
337 views

In ASP.NET MVC, is UpdateModel recommended

In ASP.NET MVC, UpdateModel is dreadfully convenient if not a bit too black box. One of the primary reasons I use ASP.NET MVC, however, is exactly for the insane amount of control I get compared to ...
4
votes
5answers
797 views

ASP.NET MVC UpdateModel vulnerable to hacking?

I have an ASP.NET MVC application that is calendar-like. As per the NerdDinner example, I'm updating the results of my edit page using UpdateMethod() In my app, certain events are fully customizable ...
3
votes
2answers
406 views

Which event should be used to update a Model from TextBox (LostFocus, LostKeyboardFocus, etc) in WPF? How to set precedence of events in WPF?

I have an application in which there are lot of TextBoxes and some Buttons like Save, SaveAs,etc. When the user edits a TextBox, I have to check the DataBase for some range, validate the range and ...
3
votes
3answers
398 views

MVC UpdateModel and Sub Classes vs Base Class

I'm looking to use the UpdateModel method to a Sub Class that retrieved at runtime, would be great if someone could shed the light on whether I'm making a total hash of it and/or whether or not what ...
3
votes
0answers
2k views

MVC UpdateModel ComplexType

If you have the following type. public class Person { public string FirstName { get; set; } public string LastName { get; set; } public List<TheParameters> Parameters { get; set; } ...
2
votes
1answer
332 views

How do I use (Try)UpdateModel?

What is the right way to use (Try)UpdateModel? When I run this: TryUpdateModel returns true, ViewData has no errors, but my Proxy is not updated. Action Method public void Save(string ...
2
votes
4answers
582 views

ASP.NET MVC Update Model Doesn't Work?

I'd like to update a Client type entity. [HttpPost] public ActionResult Manage(String id, FormCollection collection) { // Create service ClientService service = new ClientService(); // ...
2
votes
1answer
929 views

MVC 3 Master / Detail UpdateModel inserts new detail records instead of updating existing records

Ok, I've read Phil Haack's article on binding to a list and I've got that working fine on one view. But what I'm stuck when doing it off a master record. I've got a really simple form for this ...
2
votes
0answers
150 views

Update Wizard (Entity Framework) - VSS 2008 not updating view. Should I manually update it?

I am using VSS 2008 and built a Entity Framework model from SQL server 2008 database. Everything worked fine. Now I have updated a view to include a new column and tried refreshing the entire model ...
2
votes
3answers
2k views

How to Update using MVC2 RC2

I am trying to edit a record. I have the default route. When I click the submit button I get an exception on the UpdateModel line: The model of type 'MyProject.Mvc.Models.Product' could not be ...
2
votes
1answer
494 views

MVC - UpdateModel and DropDownLists

I am doing MVC and have look-up values in drop down lists. When calling UpdateModel only values before the look-ups get updated and nothing afyer. I get no errors though. I can edit and create and ...
2
votes
2answers
881 views

MVC UpdateModel when the names don't match up

Let's say that you have a Model that looks kind of like this: public class MyClass { public string Name { get; set; } public DateTime MyDate { get; set; } } The default edit template that ...
2
votes
3answers
4k views

MVC Update Model

I'm unsure if this has been asked before but here goes. I have an MVC application with the HTML looking like this; <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
2
votes
2answers
241 views

Upgrade asp.net MVC from Beta to Release 1.0

a) At the moment I have a deployed app on live on asp.mvc beta ... but few days ago it refuses to work with following error: Method not found: 'System.String ...
2
votes
2answers
663 views

UpdateModel won't properly convert a boolean value

I have a custom object called S2kBool that can be converted to and from a regular Boolean object. Basically, it allows my application to treat boolean values in my legacy database the same way it ...
1
vote
1answer
142 views

MVC3 - jQuery datepicker when multiple elements have the same ID

I have a weird situation (don't we all?) with datepickers and want to get some advice. I have a screen with a list of Locations, and for each Location, they can click Edit and edit that location. ...
1
vote
2answers
2k views

UpdateModel not updating the model via ViewModel and property from DropDownListFor

I am trying to set up an Edit view on which I have a text box and DropDownListFor. I have figured out a way to populate the DDLF, and the rendered and posted values are correct, but i cant seem to get ...
1
vote
2answers
1k views

ASP.NET MVC3: TryUpdateModel throwing an exception

I have a view which accepts the following model: Inherits="System.Web.Mvc.ViewPage<MVC_WordsByME.Models.JobCreationModel>" This posts back to the following action: [HttpPost] public ...
1
vote
1answer
1k views

Update model child collection in MVC 3 application?

This is part of a larger problem which has plagued me for a while now (see "EntityCollection already initialized" error with entity as model in Asp.Net MVC? for the entire picture). But I found a web ...
1
vote
1answer
451 views

ASP.NET MVC auto-binds a refreshed model when ModelState is invalid on HttpPost

I'm working on an ASP.NET MVC2 app. I've come to realize a very surprising, yet amazing thing that MVC does behind the scenes having to do with the ModelState and model binding. I have a ViewModel ...
1
vote
2answers
749 views

TryUpdateModel Not Working with Prefix and IncludeProperties

Hi i have an entity called User with 2 properties called UserName and Role (which is a reference to another entity called Role). I'm trying to update the UserName and RoleID from a form which is ...
1
vote
1answer
187 views

How to efficiently update models with references(dropdownList )with asp mvc and nhibernate

I started to develop a web application (application portfolio) with nhibernate and asp mvc2. I have some difficulties to properly change the category of an application. Here are my models: public ...
1
vote
2answers
275 views

How UpdateModel method fill FormCollection values to our instance?

In this example how UpdateModel method fill person instance with formValues? I think UpdateModel use reflection while filling person by formValues but how updatemodel catch formValues parameter ? ...
1
vote
2answers
54 views

Edit Post action - why does respository.save() save the data?

I am a tad befuddled. I can't reason why the following works: AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit(int id, FormCollection formValues) { Dinner dinner = ...
1
vote
0answers
496 views

UpdateModel for arrays in FormCollection

If I have [0].propertyname, [1].propertyname, etc in my FormCollection how would I go about updating the model? if I do this: public ActionResult Edit(int id, FormCollection collection){ ...
1
vote
2answers
145 views

Can I perform some processing on the POST data before ASP.NET MVC UpdateModel happens?

I would like to strip out non-numeric elements from the POST data before using UpdateModel to update the copy in the database. Is there a way to do this? // TODO: it appears I don't even use the ...
1
vote
1answer
692 views

On-demand refresh mode for indexed view (=Materialized views) on SQL Server?

I know Oracle offers several refreshmode options for their materialized views (on demand, on commit, periodically). Does Microsoft SQLServer offer the same functions for their indexed views? If not, ...
1
vote
2answers
518 views

ASP.NET MVC 2 RC2 Model Binding with NVARCHAR NOT NULL column

PLEASE NOTE: I've answered my own question with a link to an answer to a similar question. I'll accept that answer once I'm allowed to (unless anyone comes up with a better answer meantime). I have a ...
1
vote
1answer
313 views

Using Linq to update a List<T> of objects to DB

I have a form that returns me a List of FlatSessie objects in my edit view I edit a few FlatSessie's and get them returned to my Post method in that List object. In my DB I have Sessies, which I ...
1
vote
3answers
265 views

UpdateModel not working consistently for me if a ddl gets hidden by jQuery

My jQuery code hides a ddl under certain circumstances. When this is the case, after submitting the form, using the UpdateModel doesn't seem to work consistently. My code in the controller: // ...
1
vote
2answers
352 views

MVC, UpdateModel OR delete depending on form field value?

I'm very new to this, so any help is appreciated. I'll use the Dinners/RSVPs relationship for detailing my problem. One Dinner has many RSVPs. On my Dinner edit page/view I want to be able to edit ...
1
vote
1answer
811 views

Entity Framework - Update Model from Database - New Column

What is the process I should follow to update my entity framework model when I have simply added a new column to a table in the database? The process that I have followed was to right click within ...
1
vote
1answer
739 views

MVC Updatemodel not updating from DropDownList

I have the following on my edit screen: <label for="campaign.CandidateID">Candidate:</label> <%= Html.DropDownList("Campaign.CandidateID", Model.Candidates, "Choose...")%> <%= ...
1
vote
2answers
2k views

ASP.NET MVC Updatemodel not updating but not throwing error

Any ideas why this doesn't update but doesn't throw an error? public ActionResult Edit(int id, [Bind(Exclude = "deptid")]FormCollection collection) { var department = ...
1
vote
4answers
2k views

Basic Problem with Asp.net MVC UpdateModel(myClass)

In my Controller in a Asp.net MVC 1 app I want to use UpdateModel to populate a variable with POST data in my controller. I've looked at dozens of examples but even the most basic ones seem to fail ...
1
vote
1answer
2k views

ASP.NET MVC, LINQ and UpdateModel issues

Ok - I have two tables in the database, employees and companies. Here are the basic schemas for each Table Companies CompanyID - GUID - PK CompanyName - NVarChar(100) Other Descriptive Fields.... ...
1
vote
2answers
520 views

UpdateModel with SelectList

I have class named Product public class Product { public virtual int Id { get; set; } public virtual Category Category { get; set; } } Please tell me how to update Category with UpdateModel ...

1 2