hexy

Stories submitted by hexy

Tip/Trick: Fix Common SEO Problems Using the URL Rewrite Extension - S(weblogs.asp.net)

submitted by hexyhexy(325) 2 years, 1 month ago

ScottGu walks us through some of common SEO problems and how to fix them using IIS7's Url Rewrite extension. read more...

add a comment |category: |Views: 4

tags: another

C# 4.0: Alternative To Optional Arguments - Paulo Morgado(weblogs.asp.net)

submitted by hexyhexy(325) 2 years, 1 month ago

In this tip Paulo brings up a method I use often to avoid a 'buffet' of method overloads. Encapsulation all your 'arguments' in a class and passing that in, instead of all/many arguments that may or may not be optional. It's still relevant in C# 4.0 despite its new optional arguments - though I think this post misses some sample code. read more...

add a comment |category: |Views: 5

tags: another

Storing Contextual Data in Web and non-Web applications - Joel Varty(weblogs.asp.net)

submitted by hexyhexy(325) 3 years, 8 months ago

Article on storing data in HttpContext.Current.Items for web verses a static variable for non web use. Joel makes use of the [System.Threading.ThreadStaticAttribute] to provide thread safety for multi-threaded applications. read more...

add a comment |category: |Views: 5

tags: another

Algorithm to Detect Blank Images(chinhdo.com)

submitted by hexyhexy(325) 3 years, 8 months ago

Nice piece of code to help with detecting blank images. read more...

add a comment |category: |Views: 202

tags: another

Speedy C#, Part 2: Optimizing Memory Allocations - Pooling and Reusing(geekswithblogs.net)

submitted by hexyhexy(325) 3 years, 9 months ago

Rob gives some insight into the stack, the heap and the garbage collector. read more...

add a comment |category: |Views: 21

tags: another

Programmatically setting the SmtpClient pickup directory at runtime(singular.co.nz)

submitted by hexyhexy(325) 3 years, 10 months ago

This companion post shows how to set a relative pickup directory location (using reflection) when using a drop folder for handling email sending in your application - great for a development environment and works especially well for Vista/IIS7, since it has IIS7 came out without an inbuilt SMTP server on Vista. read more...

add a comment |category: |Views: 23

tags: another

Fun with SQL: Linq to SQL and Query Efficiency(episteme.arstechnica.com)

submitted by hexyhexy(325) 3 years, 10 months ago

Interesting conversation (forum thread) on the efficiency of generated queries. read more...

add a comment |category: |Views: 41

tags: another

Replacing Loaded Assemblies - Paulo Morgado(weblogs.asp.net)

submitted by hexyhexy(325) 3 years, 10 months ago

Paulo shows us how to load, unload and replace assemblies at runtime. read more...

add a comment |category: |Views: 229

tags: another

100+ SQL Server Programming Tips(wiki.lessthandot.com)

submitted by hexyhexy(325) 3 years, 11 months ago

Some decent SQL tips (although, the author has called them hacks). Includes some you may not know, and some that are common knowledge. read more...

add a comment |category: |Views: 27

tags: another

Using an smtp pickup directory during ASP.NET development(singular.co.nz)

submitted by hexyhexy(325) 4 years ago

Instead of sending mail from your development environment over the net like normal, why not have all that email sent during development saved to a local folder. It makes debugging much easier, you won't have to wait for your email client to download your messages and means you won't accidentally email any 'dummy' recipients. read more...

add a comment |category: |Views: 48

tags: another

Drinking from the, erm... garden hose?(singular.co.nz)

submitted by hexyhexy(325) 4 years, 3 months ago

A look at the effects of DotNetKicks, how it helps authors, as well as the community, and poses some questions on etiquette. read more...

add a comment |category: |Views: 0

tags: another

Build Providers: Strongly typed page urls in ASP.NET(singular.co.nz)

submitted by hexyhexy(325) 4 years, 3 months ago

A look at using a build provider to generate IntelliSense for pages within your project. read more...

add a comment |category: |Views: 21

tags: another