小新的技术天地

Make It Works !

博客园 首页 新随笔 联系 订阅 管理
  131 Posts :: 1 Stories :: 489 Comments :: 11 Trackbacks
原文:http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx
翻译:小新0574

前几天看到
思归同学推荐了几篇好文章,看了一篇确实觉得不错,。但是贴个链接,又是英文的,看的人就不会很多,我就翻译给大家吧。不过最近挺懒的,导致前一篇想翻译的文章 夭折,所以这次就分几次翻译好了.不过原文没有分成几部分,英文好的同学自己可以去看,不用等我哈。

TRULY Understanding ViewState

ViewState is a very misunderstood animal. I would like to help put an end to the madness by attempting to explain exactly how the ViewState mechanism works, from beginning to end, and from many different use cases, such as declared controls vs. dynamic controls.

ViewState是一只非常容易让人误解的动物。我想结束为了尝试解释清楚ViewState的工作机制而搞得一团糟的状况,从头到尾,从各种不同的用例,比如说declared controls vs. dynamic controls(术语我都不翻了哈)

There are a lot of great articles out there that try to dispel the myths about ViewState. You might say this is like beating a dead horse (where ViewState is the horse, and the internet is the assailant). But this horse isn't dead, let me tell you. No, he's very much alive and he's stampeding through your living room. We need to beat him down once again. Don't worry, no horses were harmed during the authoring of this article.

已经有许多很好好的文章尝试驱散ViewState的神秘。你可能会认为这就像打一只死马(这里ViewState是那只马,internet是打的人)但让我来告诉你,这只马并不是死的。其实它十分活泼,在你的卧室惊跑(这作者还真能掰的)我们需要再一次把它击倒。别担心,写这篇文章的时候没有马会受伤.

It's not that there's no good information out there about ViewState, it's just all of them seem to be lacking something, and that is contributing to the community's overall confusion about ViewState. For example, one of the key features that is important to understand about ViewState is how it tracks dirtiness. Yet, here is a very good, in-depth article on ViewState that doesn't even mention it! Then there's this W3Schools article on ViewState that seems to indicate that posted form values are maintained via ViewState, but that's not true. (Don't believe me? Disable ViewState on that textbox in their example and run it again). And it's the #1 Google Search Result for "ASP.NET ViewState". Here is ASP.NET Documentation on MSDN that describes how Controls maintain state across postbacks. The documentation isn't wrong per say, but it makes a statement that isn't entirely correct:

"If a control uses ViewState for property data instead of a private field, that property automatically will be persisted across round trips to the client."

其实并不是外界没有关于ViewState的好的资料,只是他们都缺少了一些东西,而造成整个社区对于ViewState的迷惑。比如说,其中一个关键特性就是,理解ViewState怎么tracks dirtiness很重要的。然后,这里有一片很好的,深入的关于ViewState的文章似乎指出posted form values使用viewstate维护,但这是不正确的。(不相信我?Disable他们那个例子上的textboxViewState,再运行一次)。这是关于"ASP.NET ViewState"#1 Google Search Result。这里是ASP.NET Documentation on MSDN,解释了Controls怎么across postbacks维护ViewState.这个文档每一句话都没错,当时他得出的一个statement并不完全正确:

如果一个控件为属性值使用ViewState来代替私有字段,这个属性会往返于客户端时自动被持久化

That seems to imply that anything you shove into the ViewState StateBag will be round-tripped in the client's browser. NOT TRUE! So it's really no wonder there is so much confusion on ViewState. There is no where I've found on the internet that has a 100% complete and accurate explanation of how it works! The best article I have ever found is this one by Scott Mitchell. That one should be required reading. However, it does not explain the relationship of controls and their child controls when it comes to initialization and ViewState Tracking, and it is this point alone that causes a bulk of the mishandlings of ViewState, at least in the experiences I've had.

这好像暗示说,任何你扔给ViewState StateBag的东西,都会往返于客户浏览器。这不是真的!这么看来,对ViewState有这么对困惑真的一点都不奇怪了。我在internet真找不出能100%完全正确解释Viewstate是怎么工作的文章。我曾今找到最好的一片是this one by Scott Mitchell。这篇值得阅读。然而,这文章并没有解释控件和他们子控件在初始化和ViewState Tracking时的关系,而这正是造成大量误用ViewState的关键所在,至少在我的经验中是这样的。

So the point of this article will be to first give a complete understanding of how ViewState basically functions, from beginning to end, hopefully filling in the holes that many other articles have. After a complete explanation of the entire ViewState process, I will go into some examples of how developers typically misuse ViewState, usually without even realizing it, and how to fix it. I should also preface this with the fact that I wrote this article with ASP.NET 1.x in mind. However, there are very few differences in the ViewState mechanism in ASP.NET 2.0. For one, ControlState is a new type of ViewState in ASP.NET 2.0, but it treated exactly like ViewState, so we can safely ignore it for the purposes of this article.

所以这篇文章的首先会给出一个关于ViewState基本功能的一个完整理解,从头到尾,希望能够堵上很多其他文章的漏洞。在对整个ViewState过程的完全解释以后,我会展示一些开发人员怎么误用ViewState的例子,通常他们根本不会意识到它,和也不知道如何修复它。我首先声明我这篇文章写得一些情况是对于ASP.NET 1.X而言的。然而,ASP.NET 2.0对于ViewState机制只有极少的更改。其中一点,ControlStateASP.NET 2.0 中是一种ViewState的新类型,但是它跟ViewState几乎是一样的处理方式,所以我们可以很安全的忽略它。

First let me explain why I think understanding ViewState to it's core is so important:

首先让我解释为什么理解ViewState的核心是很重要的:

MISUNDERSTANDING OF VIEWSTATE WILL LEAD TO...

  1. Leaking sensitive data
  2. ViewState Attacks - aka the Jedi Mind Trick -- *waves hand* that plasma tv is for sale for $1.00
  3. Poor performance - even to the point of NO PERFORMANCE
  4. Poor scalability - how many users can you handle if each is posting 50k of data every request?
  5. Overall poor design
  6. Headache, nausea, dizziness, and irreversible frilling of the eyebrows.

 错误理解ViewState会造成

  1. 丢失敏感数据
  2. ViewSate攻击 - aka the Jedi Mind Trick -- *waves hand* that plasma tv is for sale for $1.00
  3. 糟糕的性能甚至可以到达没有性能的程度
  4. 糟糕的可伸缩性 如果每一次请求都post 50K的数据有多少用户可以处理
  5. 糟糕的全局设计
  6. 头痛,反胃,头昏眼花,皱眉头(这作者真是

 

If you develop an ASP.NET Application and you don't take ViewState seriously, this could happen to you:

如果你开发ASP.NET程序而不严肃处理ViewState,这就会发生在你身上:
ViewStateMadness.jpg

The ViewState form data

borgcube.jpg

ViewState will add your web app's distinctiveness to it's own. Performance is futile

I could go on but that is the gist of it. Now lets move on by starting back from the beginning:

 

我可以继续,不过这些是它的要点。现在让我们从头开始:

WHAT DOES VIEWSTATE DO?
This is a list of ViewState's main jobs. Each of these jobs serves a very distinct purpose. Next we'll learn exactly how it fulfills those jobs.

  1. Stores values per control by key name, like a Hashtable
  2. Tracks changes to a ViewState value's initial state
  3. Serializes and Deserializes saved data into a hidden form field on the client
  4. Automatically restores ViewState data on postbacks

 

ViewState做了什么?

这里是ViewState所作的主要工作的一个列表。每一个工作都达到了一个不同的目的。接下来我们会了解到它怎么完成这些工作的。

  1. 通过键名,每一个控件保存一些值,就像Hashtable.
  2. 跟踪对ViewState初始状态的改变。
  3. 序列化和反序列化保存的数据到客户端一个隐藏字段里。(大家比较清楚的只有这点吧?)
  4. postbacks时自动恢复ViewState数据。

While ViewState does have one overall purpose in the ASP.NET Framework, it's four main roles in the page lifecycle are quite distinct from each other. Logically, we can separate them and try to understand them individually. It is often the mishmash of information on ViewState that confuses people. Hopefully this breaks it down into more bite size nuggets. Mmmm... ViewState Nuggets.

由于ViewState全面参与了ASP.NET Framework,在页面生命周期中它的四个角色各不相同。逻辑上,我们可以分割他们,尝试单独一个一个理解他们。ViewState中混乱的信息经常使人们迷惑。希望它能被打碎成小到可以被咬的nuggets…ViewState Nuggets(这作者又来这招了)


ViewStateNuggets.jpg

To be continued…

Part2
http://www.cnblogs.com/wdxinren/archive/2006/09/30/519325.html

posted on 2006-09-30 09:53 小新0574 阅读(6714) 评论(14)  编辑 收藏 所属分类: ASP.NET

Feedback

#1楼 2006-09-30 10:02 木野狐[匿名]
支持。这两天我正在看该文章。

scalarbility 一般翻译为“可伸缩性”,不是“可测量性”。

  回复  引用    

#2楼 2006-09-30 10:13 维生素C.NET      
思归...同学.......
  回复  引用  查看    

#3楼[楼主] 2006-09-30 10:20 小新0574      
TO 木野狐[匿名]

谢谢,马上改

  回复  引用  查看    

#4楼 2006-09-30 11:48 aspnetx      
关注中...
  回复  引用  查看    

小新同学翻译的很好
  回复  引用  查看    

#6楼 2006-09-30 17:34 大陆响尾蛇      
不错。帮你整理了一些。下班了。不帮你整理了。

ViewState是一种非常容易让人误解的动物。我想尝试 从头到尾,从各种不同的用例,比如说declared controls vs. dynamic controls,解释清楚ViewState的工作机制,反而更是一团糟。

已经有许多好文章试图解开ViewState的神秘面纱。你可能会认为这就像打一只死马(美国口语:重提早已解决了的问题)(这里的ViewState是那只死马,internet是打死马的人)但是我要告诉你,这只马并不是死的。它其实它是十分活力的,你看,还在你的卧室惊跑呢,我们需要再一次把它击倒。别担心,写这篇文章的时候没有马会受伤.

其实外界并不缺乏关于ViewState的好资料,只是他们似乎都缺了一些东西,造成了整个社区对ViewState感到困惑。比如说,其中一个关键特性就是,理解ViewState怎么tracks dirtiness是很重要的。然而,这里有一篇很好的深入的关于ViewState的文章(简要说明posted form values使用viewstate来维护),但这是不正确的。(不信?Disable他们那个例子上的textbox的ViewState,再运行一次)。这是关于"ASP.NET ViewState"的#1 Google Search Result。这是ASP.NET在MSDN的文档,解释了Controls怎么通过postbacks维护ViewState.这个文档每一句话都没错,当时他得出的一个statement并不完全正确:

“如果一个控件使用ViewState属性值来代替私有字段,这个属性会持久化性的往返于客户端和服务器。”

这好像是在说,任何扔给ViewState状态包,都会往返于客户浏览器。其实这不是真的!如果是这样,对ViewState有困惑真是一点也不奇怪了。我在internet真找不出能100%完全正确解释Viewstate是怎么工作的文章。我曾经找到最好的一篇是由Scott Mitchell写的。这篇很值得阅读。然而,这文章并没有解释控件和他们子控件在初始化和ViewState Tracking时的关系,而这正是造成大量误用ViewState的关键所在,至少在我的经验中是这样的。

  回复  引用  查看    

#7楼 2006-10-02 10:46 huobazi[未注册用户]
您好:
请问是否允许转载?
谢谢。

  回复  引用    

#8楼[楼主] 2006-10-02 10:56 小新0574      
可以啦,转载的时候注明以下这个链接
http://www.cnblogs.com/wdxinren/archive/2006/09/30/518952.html">http://www.cnblogs.com/wdxinren/archive/2006/09/30/518952.html
还有原文的链接
http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx">http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx
就可以了

  回复  引用  查看    

作者台罗索了 第一部分好像还没有进入主题阿!
  回复  引用    

解释很不错,哈哈,终于对ViewState想通了一些事情,呵呵
谢谢楼主!

  回复  引用    

看到头晕目障
  回复  引用    

恩..还是有悟的
  回复  引用    

#13楼 2008-09-10 20:11 刘长锋      
挺不错的文章,整理得更加易读一些更好
  回复  引用  查看    

#14楼 2009-03-06 17:20 车队[未注册用户]
太深奥了

  回复  引用    




发表评论

昵称: [登录] [注册]

主页:

邮箱:(仅博主可见)

评论内容:

  登录  注册

[使用Ctrl+Enter键快速提交评论]

0 518952




相关文章:

相关链接: