DotNetShoutout - Stories tagged with ViewState
6
Shouts

ASP.NET Session vs ViewState

published 752 days, 13 hours, 29 minutes ago posted by dharadhara 752 days, 20 hours, 11 minutes ago
Tuesday, May 03, 2011 12:47:15 PM GMT Tuesday, May 03, 2011 6:06:08 AM GMT
The following is question that is asked by one of the Community Member from Beyond Relational Website to my personal ID. “I have one doubt in sessions. Sessions are using in the website that sessions variables are storing in server. Suppose at a time if ten users send the request to server, 10... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, ViewState, ASP.NET
5
Shouts

ASP.NET SEO around VIEWSTATE

published 795 days, 5 hours, 9 minutes ago posted by sonukapoorsonukapoor 795 days, 12 hours, 44 minutes ago
Monday, March 21, 2011 9:07:32 PM GMT Monday, March 21, 2011 1:33:11 PM GMT
This article will bring you several SEO policies in terms of ViewState in ASP.NET. (more)
category: Web Dev | clicked: 8 | comment | | source: dotnetslackers.com
tags: SEO, ViewState, ASP.NET
2
Shouts

Pass Viewstate across pages in ASP.NET - Dot Net logiX

posted by DotNetLogixDotNetLogix 941 days, 19 hours, 6 minutes ago
Tuesday, October 26, 2010 7:11:00 AM GMT
Articles (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetlogix.com
tags: State Management, ViewState, ASP.NET
4
Shouts

ASP.NET ViewState Security

posted by JudoJudo 995 days, 12 hours, 17 minutes ago
Thursday, September 02, 2010 1:59:24 PM GMT
ASP.NET ViewState data is stored in a single Base64-encoded string  such as  this:id="__VIEWSTATE" value="dDw3NDg2NdTI5MDg7Ozr4="/> Since this value is not formatted in clear text, developers sometimes assume that their ViewState data is encrypted which is most certainly not the case. This data string can be reverse-engineered this and then viewed. This is an obvious security issue if sensitive data is being stored in ViewState. To make ViewState secure, there are two choices, hash codes and ViewStat... (more)
category: Web Dev | clicked: 1 | comment | | source: www.aspnet101.com
tags: Security, ViewState
8
Shouts

ViewState Control in ASP.NET 4.0 « Abhijit's World of .NET

published 1103 days, 12 hours, 6 minutes ago posted by abhijitjanaabhijitjana 1105 days, 2 hours, 32 minutes ago
Monday, May 17, 2010 2:10:19 PM GMT Saturday, May 15, 2010 11:44:29 PM GMT
View State is one of the most important and useful client side state management mechanisms. It can store the page value at the time of post back (Sending and Receiving information from Server) of your page. ASP.NET pages provide the View State property as a built-in structure for automatically storing values between multiple requests for the same page. we generally used “EnableViewState” Properties for both Page ... (more)
category: Web Dev | clicked: 0 | comment | | source: abhijitjana.net
tags: State Management, C#, Visual Studio, ASP.NET 4, ViewState
4
Shouts

Better View State Management in ASP.NET 4.0

published 1134 days, 15 hours, 5 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 1136 days, 5 hours, 8 minutes ago
Friday, April 16, 2010 11:12:10 AM GMT Wednesday, April 14, 2010 9:09:05 PM GMT
ASP.NET is a great platform to develop any web applications. From ASP.NET 1.1 we are having one feature called View State which store the data in hidden field during page post back. Any Serializable data can be stored in View State. It’s scope is limited to page post backs.View state is great if you use it wisely otherwise it may create problem with performance page. I have seen that there were some page which contains lots of view state. It will increase your Kilo bytes of page and increase page renderi... (more)
category: Web Dev | clicked: 0 | comment | | source: jalpesh.blogspot.com
tags: asp.net4.0, ViewState
6
Shouts

JEF CLAES ON .NET AND LIFE: Webforms lessons learned the hard way (Part 1)

published 1193 days, 14 hours, 58 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1195 days, 10 hours, 51 minutes ago
Tuesday, February 16, 2010 11:18:33 AM GMT Sunday, February 14, 2010 3:25:18 PM GMT
I've been spending a lot of my days in Webforms the last two years. In this post I want to share some best practices I've learned the hard way over these years. A lot of MVC developers might think this post comes a bit late (who still cares about Webforms?!), I do think (in the real world) a lot of the ASP.NET developers are still using Webforms. This post is directly targeting them.. (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: Designer, Best Practices, Performance, ViewState
10
Shouts

The problem that ViewStateMode solves

published 1256 days, 14 hours, 35 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1258 days, 10 hours, 15 minutes ago
Tuesday, December 15, 2009 11:41:59 AM GMT Sunday, December 13, 2009 4:01:45 PM GMT
A new feature of ASP.NET 4.0 is the ViewStateMode property on a Control. You can use the ViewStateMode property to enable view state for an individual control even if view state is disabled for the page. Source:Msdn In this post I'll try to give this new feature a chance to shine and show it's use. Problem to solve: Disable ViewState on the Page and enable it on an individual Control. Let's try to solve this without the ViewStateMode property. Simply disable the ViewState on the page and e... (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: WebForms, ViewState, ASP.NET