JGaroutte

Stories submitted by JGaroutte

Using Type.GetType in the .Net Framework(www.jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 5 months, 26 days ago

I was recently working on a project where we needed a System.Type object based on settings in the application configuration file. It seems like a simple thing to do but there is a catch that I keep forgetting when using Type.GetType. When I tried to get the type for a SqlConnection I was a little surprised that it was null. read more...

add a comment |category: |Views: 2

tags: another

Using build actions(www.jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 1 year, 6 months ago

Every so often you come across a project where you need to install a strongly typed assembly into the gac in order to run your application. What happens when you need to debug the application and you have modified the assembly? read more...

add a comment |category: |Views: 0

tags: another

Dynamic Formula Calculation(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 2 years, 6 months ago

resolving a math formula from a string. read more...

add a comment |category: |Views: 35

tags: another

The Hidden Requirement(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 2 years, 7 months ago

A lesson of how hidden requirements cause unexpected side effects.... read more...

add a comment |category: |Views: 7

tags: another

Using an Object for an Id(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 2 years, 11 months ago

How and why to use an object for an Id instead of an Int32. read more...

add a comment |category: |Views: 18

tags: another

Variable boxing and the equal operator vs. the Equals method(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 2 years, 11 months ago

An article about the difference between the == operator and the Equals method read more...

add a comment |category: |Views: 18

tags: another

Extending the ASP.Net Security model to use rights: Cassini(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 2 years, 11 months ago

A little bit about the differences between IIS and Cassini, IHttpModules and page requests. read more...

add a comment |category: |Views: 9

tags: another

Ajax Popup Tooltips(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 3 months ago

Ajax popup tooltips read more...

add a comment |category: |Views: 105

tags: another

WebService Documentation: Using a custom Site Map(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

How to use a custom SiteMapProvider to build a menu of WebMethods in a WebService. read more...

add a comment |category: |Views: 22

tags: another

WebService Documentation: Using a custom template(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

How to replace the default web service documentation asmx page with custom page. read more...

add a comment |category: |Views: 26

tags: another

The returning event delegate(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

An article about using a return type with delegates/events and the result. read more...

add a comment |category: |Views: 11

tags: another

The woes of SourceForge.net and SVN(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

A little information about the MergeInfo not supported message with Tortoise 1.5.x and previous versions of SVN servers like SourceForge.net read more...

add a comment |category: |Views: 6

tags: another

Beyond Generics, Interfaces, Providers and You : IReadByParentId(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

A follow up article about adding interfaces to get a collection of object by a parentId using the generic interface provider model pattern. read more...

add a comment |category: |Views: 11

tags: another

Generics, Interfaces, Providers and You - Part 4: Building the Classes(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

The 4th and final part in a series about using generic interfaces in a provider model. read more...

add a comment |category: |Views: 9

tags: another

Generics, Interfaces, Providers and You - Part 3:IProviderCollection (jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

Generics, Interfaces, Providers and You - Part 3:IProviderCollection & IProviderRepository... Part 3 in a series about using generic interfaces in a provider model. read more...

add a comment |category: |Views: 7

tags: another

Generics, Interfaces, Providers and You - Part 2:IDataObject(jeffgaroutte.net)

submitted by JGaroutteJGaroutte(315) 3 years, 9 months ago

Part 2 in a series about using generic interfaces with the provider model. read more...

add a comment |category: |Views: 12

tags: another