Stories recently tagged with 'HttpModule'

Remove "WWW." from URLs in ASP.NET(nayyeri.net)

submitted by keyvankeyvan(4086) 5 years, 5 months ago

Keyvan Nayyeri writes about his HTTPModule, WWWLess, which removes "www." from URLs in ASP.NET to make them shorter and unique. read more...

add a comment |category: |Views: 23

tags: another

An HttpModule that moves ViewState to the bottom(madskristensen.dk)

submitted by silverCOREsilverCORE(275) 5 years, 5 months ago

Mads Kristensen shows how to move the ViewState to the bottom of the page with a couple of advantages that this brings. read more...

3 comments |category: |Views: 229

tags: another

Spam proof your website using an HttpModule(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 6 months ago

The module replaces all e-mail addresses on your website with the mixed hex/clear text characters. It's perfectly readable by browsers and humans, but not for spam robots. read more...

add a comment |category: |Views: 18

tags: another

A whitespace removal HTTP module for ASP.NET 2.0(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 7 months ago

A plug n’ play HTTP module that works simply by adding the class to the App_Code folder. It uses regular expressions to identify and remove the unnecessary whitespace from the current .aspx web page. The overhead from this module is almost too insignificant to even measure. read more...

2 comments |category: |Views: 324

tags: another

HTTP compression in ASP.NET 2.0(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 9 months ago

The new System.IO.Compression namespace in .NET 2.0 makes it easy to implement HTTP compression without having to touch IIS. The best thing about it is that you no longer need any third party compression components, it’s all build directly into .NET Framework. read more...

add a comment |category: |Views: 62

tags: another

Create Unlimited Subdomains with HTTP Modules(codebetter.com)

submitted by RobChappelRobChappel(2720) 5 years, 10 months ago

Brendan Tompkins show us how to map incoming subdomain HTTP requests to a HTTP Module read more...

add a comment |category: |Views: 115

tags: another