Tagged Questions

0
votes
1answer
28 views

asp.net image in a form and HTTPPost

HI, I'm sure I'm missing something very obvious here so please forgive me. I'm using MVC 2 Beta and I have a model that has several properties, strings, ints etc. the usual stuff. It also has a …
0
votes
1answer
63 views

ASP.NET MVC: How to maintain TextBox State when your ViewModel is a Collection/List/IEnumerable

I am using ASP.NET MVC 2 Beta. I can create a wizard like workflow using Steven Sanderson's technique (in his book Pro ASP.NET MVC Framework) except using Session instead of hidden form fields to …
0
votes
1answer
24 views

Tinymce Model Binding with ASP.NET MVC

Hello, Does anyone know how to auto-populate the tinymce editor from the ASP.NET MVC model? In other words, what code do I need to use to set the contents of tinymce? EDITED: My problem is that …
0
votes
2answers
46 views

MVC Model Binding

I am using the MVC validation library from link text. I chose this library because I am also using .NetTiers which generates all of the Validation Attributes using MS Enterprise Library Validation …
0
votes
1answer
65 views

ASP.NET MVC - Form Returns Null Model Unless Model is Wrapped in a Custom ViewModel

I have a pair of views in my application that both display the same Editor Template for one of my model items; of the two views ("Add" and "Edit"), "Edit" works fine, but "Add" is returning null for …
0
votes
2answers
107 views

With MVC.NET Model Binding, does the view page Model and the binding Model have to be the same class?

(That is, the model that you pass to the view and the model that you get back once the form posts.) If not, is it better to do so anyways? What if there is data you are gathering that is beyond what …
0
votes
2answers
24 views

If property or field is excluded when model-binding, what value will it have?

The question is in the title, actually - let's say I have a simple class like this: public class Product { public Int32 ID { get; set; } public String Name { get; set; } //... } When I use …
0
votes
1answer
27 views

MVC Views and Controllers: Re-instantiate entities when form submitted

We are working with entities in our MVC controllers which are passed to strongly typed views. How do we re-instantiate these entities in the controller with updated data when the form is posted in …
0
votes
3answers
94 views

ASP.NET Bind to IEnumerable

Hi, I'm passing a the type IEnumerable to my view, and for each item I output a html.textbox to enter the details into. When I post this back to my controller, the collection is empty and I can't …
1
vote
1answer
924 views

Asp.NET MVC Model Binding - Using Bind Parameter Attribute to assign a prefix for a simple type

I have a .net mvc app with an controller action which accepts user registration posts. I have the following UI fields: emailaddress, firstname, lastname, password, and confirmpassword. Some of these …
1
vote
2answers
102 views

Model Binding an IList of selected items only

I have an action method setup: public ActionResult Delete(IList<Product> products) And a table of products in my view. I have got Model Binding working so that on submit I can populate the …
4
votes
3answers
397 views

ASP.NET MVC Model Binding Related Entities on Same Page

This problem has been driving me crazy for several hours now... In my domain, I have 2 entities that are related to each other Sku and Item. Each sku can have many items. public class Sku { …
3
votes
4answers
426 views

Model Binding on Multiple Model Form Submission from Strongly-Typed View

Hi guys, I'm having problems binding on a form with multiple models being submitted. I have a complaint form which includes complaint info as well as one-to-many complainants. I'm trying to submit …
0
votes
1answer
166 views

ASP.NET MVC Model Binder for Generic Type

Is it possible to create a model binder for a generic type? For example, if I have a type public class MyType<T> Is there any way to create a custom model binder that will work for any type …
4
votes
1answer
245 views

How does a multiple select list work with model binding in ASP.NET MVC?

If you have a select list set to multiple in ASP.NET MVC, how does the modelbinding work? What does it return for your selected items, an array? <SELECT NAME="toppings" MULTIPLE SIZE=5> …

1 2 3 next
15 30 50 per page