I'm learning asp.net mvc and found something interesting:
It seems that I can't explicitly define a View's Model from within the View with error message saying that it has no setter.
@{ this.Model = "Hello" } //error
Then I looked at the source code in WebViewPage.cs and a View's Model property is actually like this:
public object Model {
get {
return ViewData.Model;
}
}
Thus the error.
But it's interesting how I can do this: @{ ViewData.Model = "hello"; } and actually be able to use the @model statement, resulting to "hello"
I think I'm looking too much into it, but why is this so?
beginner at C# and ASP.NET
@Modelwas contained in theViewDatadictionary. Astounding, because I have heard several well respected sources RAIL against the use of ViewData and yet here it is built into the framework. – Travis J Mar 29 '12 at 5:22