Stories recently tagged with 'State'

Regular Expression Engine in C# (the Story)(leniel.net)

submitted by lenielleniel(489) 2 years, 8 months ago

A “long time ago”, more precisely 3 years ago, I was studying Automata and Formal Languages which was a Computer Engineering discipline. At that time I was amazed by the new things I was learning such as NFAs, DFAs, FSMs and Regular Expressions. For the sake of my development I started searching for programming related material that could... read more...

add a comment |category: |Views: 31

tags: another

Best Practices - Fast, Scalable, and Secure Session State Management (msdn.microsoft.com)

submitted by khushal999pkhushal999p(275) 4 years, 5 months ago

Best Practices Fast, Scalable, and Secure Session State Management for Your Web Applications read more...

2 comments |category: |Views: 69

tags: another

Gain Control Of Your Control State(haacked.com)

submitted by HaackedHaacked(5105) 4 years, 10 months ago

A Primer on the less well known cousin to ViewState, the Control State. Contains an interesting demo of the two types of state persistence side by side. read more...

2 comments |category: |Views: 10

tags: another

ASP.NET State Management(en.csharp-online.net)

submitted by HyleHyle(2755) 4 years, 11 months ago

Learn to manage application state, session state, cookie state, and view state in ASP.NET. Excerpt: Before we begin discussing state management in ASP.NET, let's get one thing straight: Attempting to manage state in Web applications goes against the fundamental design principles of the Web. One of the primary goals of the Web and its underlying protocol, HTTP, is to provide a scalable medium for sharing information. Adding user state inherently reduces scalability because the pages shown to a particular user will be different from those shown to another user and thus cannot be reused or cached. read more...

add a comment |category: |Views: 9

tags: another