vote up 6 vote down star
1

I am learning ASP.NET MVC and many concepts of "ASP.NET" like authentication, authorization, session state still apply to it.

But from whatever little I have understood, I don't see that ViewState is still relevant in an ASP.NET application. But it is there (property of System.Web.Mvc.ViewPage)! Is it there only for compatibility reasons or it still have some purpose/use?

flag

1  
This kind of question I find very useful. I am not using ASP.NET MVC right now because I'm not presently doing web stuff at all, but I still want to know about it so I can pick it up quicker when I am using it. – Chris Needham Jul 23 at 10:05

3 Answers

vote up 2 vote down check

Yes, that is correct. ViewState is not relevant. More on differencies between Page Model and MVC here:

Compatibility of ASP.NET Web Forms and ASP.NET MVC

link|flag
vote up 2 vote down

Its present because ViewPage inherits from Page. However Page itself had no use for ViewState its used by WebControls. It is possible to include original WebControls in a View but doing so would be completely missing the point of separating control from view.

link|flag
You reasoning is correct but I chose to accept another answer because it answers decisively! – Hemant Jul 23 at 10:26
You get my vote though :) – Hemant Jul 23 at 10:26
vote up 1 vote down

Personally I think its obsolete. The only time I've seen ViewState in an ASP.Net MVC app is when someone 'accidentally' added a ASP.Net control to a page.

link|flag
I get your message but since ASP.NET web forms are not obsolete, ViewState is also not obsolete. Its just not used by ASP.NET MVC! – Hemant Jul 23 at 10:07

Your Answer

Get an OpenID
or

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