riskfactor

Stories submitted by riskfactor

Got ViewState?(blogs.riskotech.com)

submitted by riskfactorriskfactor(35) 2 years, 6 months ago

A few months ago I wrote a couple of posts on Managing Session Variables in ASP.NET using a Proxy. Since then I have thought about the need to write a post addressing the use of the ViewState as well. This article presents a proposed solution for managing objects in Viewstate in a strongly typed manner. read more...

add a comment |category: |Views: 15

tags: another

Managing Session Variables in ASP.NET using a Proxy(blogs.riskotech.com)

submitted by riskfactorriskfactor(35) 2 years, 9 months ago

Every developer who has ever worked with ASP.NET in a large solution knows how quickly Session variables can get out of control. From the lack of strongly typed references to the potential misspellings of the variable names, the problems are always with us. The good news is that there is a better way to handle objects in the Session. The key is to develop a proxy class that will provide a set of strongly typed properties to store and retrieve objects in the HTTPSessionState object. read more...

add a comment |category: |Views: 25

tags: another

Managing Session Variables in ASP.NET using a Proxy(blogs.riskotech.com)

submitted by riskfactorriskfactor(35) 2 years, 10 months ago

Every developer who has ever worked with ASP.NET in a large solution knows how quickly Session variables can get out of control. From the lack of strongly typed references to the potential misspellings of the variable names, the problems are always with us. The good news is that there is a better way to handle objects in the Session. read more...

add a comment |category: |Views: 28

tags: another

Accidental Singletons in Collection-Type Dependency Property(blogs.riskotech.com)

submitted by riskfactorriskfactor(35) 3 years, 2 months ago

Dependency Properties are a unique and powerful feature of WPF/Silverlight though they are normally transparent to you and you will, for the most part, not worry about them. However, there are times when creating a Custom Dependency property will be the precise solution to your problem. Sometimes you will need to create a dependency property that is a collection-type. Now there is a very important point that you need to watch when creating a dependency property of this type, and that is the unintended creation of a singleton value. read more...

add a comment |category: |Views: 28

tags: another

Cook or Conductor: A New Paradigm for Thinking About Refactoring(blogs.riskotech.com)

submitted by riskfactorriskfactor(35) 3 years, 2 months ago

Refactoring is a buzz word that is floated frequently in software development circles. Is it really understood though? Chances are that if you get a room full of developers together your going to have a significant number of differing opinions on what constitutes refactoring. This post is helpful is defining Refactoring and also helping to identify the mindset which enables and promotes Refactoring. read more...

add a comment |category: |Views: 2

tags: another

The Shadow Knows! – The finer Nuisances of the VisualBasic.NET Shadows(blogs.riskotech.com)

submitted by riskfactorriskfactor(35) 3 years, 2 months ago

Highlights the subtile but important differences in VB.NET between Shadows and Overrides. read more...

add a comment |category: |Views: 7

tags: another