Posted by: jwalin on: June 26, 2009
http://blogs.iis.net/webtopics/archive/2009/06/23/how-to-add-a-locked-header-row-to-an-asp-net-gridview-control.aspx
Posted by: jwalin on: June 26, 2009
Thank you Peter Vogel
Encrypting Sections
This is the code that I use to encrypt a specific section of the Web.config file. I first select a section using the Configuration object’s Sections collection. In this case, I’m selecting the connectionStrings section:
Dim configFile As System.Configuration.Configuration
Dim configSection As ConfigurationSection
configFile = System.Web.Configuration.WebConfigurationManager. _
[...]
Posted by: jwalin on: June 4, 2009
http://www.linkedin.com/news?actionBar=&sik=1244087646866&aIdx=0&articleID=40544986
Posted by: jwalin on: June 2, 2009
Example, but with no error checking:
using System;
using System.Reflection;
namespace Foo
{
class Test
{
static void Main()
{
Type type = Type.GetType(“Foo.MyClass”);
[...]