Stories recently tagged with 'Viewstate'

Is Your Page Down With OPP(wekeroad.com)

submitted by HaackedHaacked(5105) 5 years, 2 months ago

Rob Conery points out that while developers spend a lot of time optimizing their code, making sure they don't duplicate code, etc... They often don't give a second look at their rendered HTML code. My goodness! 204K Viewstate! read more...

add a comment |category: |Views: 1

tags: another

Wrap Your Name Value Variables(sitepoint.com)

submitted by wwb_99wwb_99(870) 5 years, 3 months ago

ASP.NET gives a developer a lot of loosely typed key-value collections in which to stash stash variables, depending upon persistence needs. The short list includes ViewState, Session, Application and HttpContext.Items. These collections can come in very handy when one needs to keep an object around outside of a single request or shuttle things between different bits of the http pipeline. But it comes at a price—these collections are loosely typed, just returning Objects. Moreover, there is no compile-time checking to ensure that you are requesting the right key in the right place. Errors can lead to crashes at best, and interesting data corruption at worst. Here is a handy technique to avoid such issues. read more...

1 comment |category: |Views: 6

tags: another

ViewState State …(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 5 years, 3 months ago

No single article covers the view state topic complety and exhaustive. Here are some directions on where to look for what aspect. read more...

add a comment |category: |Views: 7

tags: another

An HttpModule that moves ViewState to the bottom(madskristensen.dk)

submitted by silverCOREsilverCORE(275) 5 years, 5 months ago

Mads Kristensen shows how to move the ViewState to the bottom of the page with a couple of advantages that this brings. read more...

3 comments |category: |Views: 229

tags: another

TRULY Understanding Dynamic Controls (Part 1) (weblogs.asp.net)

submitted by wwb_99wwb_99(870) 5 years, 9 months ago

Dave Reed is at it again. In a followup to his amazing article on ViewState, he is working up to telling you all the ins and outs of using dynamic controls. read more...

add a comment |category: |Views: 13

tags: another

Why ASP.NET Postbacks and Viewstate Considered Harmful(staff.interesource.com)

submitted by kashkash(75) 5 years, 9 months ago

This is the reason why Why ASP.NET Postbacks and Viewstate Considered Harmful. read more...

add a comment |category: |Views: 19

tags: another

ASP.NET Postbacks and Viewstate Considered Harmful(staff.interesource.com)

submitted by psealepseale(95) 5 years, 9 months ago

"Like all technologies worth using, it's possible to do really evil things with ASP.NET, but to my mind it actually makes it more likely that such evil things will happen even in the hands of an experienced developer." read more...

add a comment |category: |Views: 15

tags: another

Tiny Trick For ViewState Backed Properties(haacked.com)

submitted by HaackedHaacked(5105) 5 years, 9 months ago

Describes how to use the null coalescing operator to write cleaner ViewState backed properties. read more...

add a comment |category: |Views: 1

tags: another

Optimizing Rendered Page Size - Part 2(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 9 months ago

A second article describing how you can go about reducing the size of the page that is sent to a client. read more...

add a comment |category: |Views: 7

tags: another

TRULY Understanding ViewState(weblogs.asp.net)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

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. read more...

add a comment |category: |Views: 34

tags: another

Infinities Loop: TRULY Understanding Viewstate(infinitiesloop.blogspot.com)

submitted by simonebsimoneb(5450) 5 years, 9 months ago

The best article to truly understand ViewState out there. read more...

1 comment |category: |Views: 11

tags: another