1
vote
1answer
395 views
FormatException: Html.CheckBox(), UpdateModel() and the hidden input
i have my checkbox for a bool field like so in my view:
=Html.CheckBox("Active", ViewData["Active"] != null ? ViewData["Active"] : (ViewData.Model.Active != null ? ViewData.Model. …
1
vote
2answers
56 views
MVC, UpdateModel OR delete depending on form field value?
Hi, 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 w …
1
vote
1answer
56 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 …
0
votes
1answer
49 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 …
0
votes
2answers
49 views
Validation with a Service layer, how to update an entity
Hi!
I've implemented a service layer in my application like:
http://www.asp.net/learn/mvc/tutorial-38-cs.aspx
(I use Linq2SQL). Now I've trouble in implementing the Edit ActionRe …
0
votes
1answer
38 views
How can I get my table back after I remove it from my EDMX file in Linq-to-Entities?
I am having trouble with my Linq2Entities model - I might be missing something obvious here.
Here is what I did:
Added an EDMX model file
Added TableX to the model
Went back to …
2
votes
5answers
128 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 …
0
votes
3answers
126 views
ASP.NET MVC Issue with Using Reflection Created Objects with the Default Model Binder
I am having a weird issue in ASP.NET MVC with objects not being updated with UpdateModel when passed a formCollection. UpdateModel does not appear to be working properly when the o …
0
votes
2answers
153 views
How can I get ASP.NET MVC’s UpdateModel to ignore primary key colum?
I have a table with a GUID primary key into which I'm trying to insert a newly-created object using an ASP.NET MVC Controller's UpdateModel method (db is a LINQ-to-SQL data context …
0
votes
1answer
154 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 = …
6
votes
2answers
2k views
ASP.NET MVC UpdateModel with a sorta complex data entry field
Hi folks,
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 qu …
1
vote
4answers
157 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 …
1
vote
1answer
126 views
MVC - UpdateModel and DropDownLists
Hi
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 …
7
votes
4answers
419 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 functio …
3
votes
2answers
86 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 { …
