vote up 0 vote down star

Hi everyone,

I am trying to use UpdateModel in a class other than my controller and it doesn't work. When I call UpdateModel in my controller class it works perfectly. The references are the same in both classes.

Would someone please help me out on this? Thanks!

flag

63% accept rate

1 Answer

vote up 1 vote down check

Unfortunately this is not a reference issue. Your controller inherits from Controller which has a virtual UpdateModel method. This allows you to call the method in a derived class. This method will only be available in other types that inherit from Controller and in instances of Controller itself.

link|flag
its actually not virtual. least on RC1 it isn't! did it used to be? i really want it to be – Simon Feb 9 at 11:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.