Stories recently tagged with 'HttpModule'

How to use httpModules to troubleshoot your ASP.NET application(dotnetscraps.com)

submitted by itzrahulsoniitzrahulsoni(745) 3 years, 10 months ago

How to use httpModules to troubleshoot your ASP.NET application. Create a simple module and play around with this. read more...

add a comment |category: |Views: 62

tags: another

12/2007: Code that I've Blogged over the last 6 months (pietschsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 5 months ago

This is a collection of my blogs posts that include code from over the last 6 months. There's stuff ranging from a Windows Service monitor that runs in the system tray, to UrlRewriting/UrlMapping, to ASP.NET AJAX, to a JavaScript based Slideshow component, to adding iPhone style flick support to scrolling a web page using JavaScript. read more...

add a comment |category: |Views: 15

tags: another

URL Rewriter for ASP.NET, IIS 7.0, or Mono(managedfusion.com)

submitted by zigamorphzigamorph(3319) 4 years, 7 months ago

Managed Fusion Url Rewriter is a powerful URL manipulation engine based on the Apache mod_rewrite extention. It is designed specifically for ASP.NET and runs on Microsoft's Internet Information Server (IIS) and Mono XPS Server and is fully supported in IIS 7.0. Managed Fusion Url Rewriter gives you the freedom to go beyond the standard URL schemes and develop your own scheme. read more...

add a comment |category: |Views: 95

tags: another

Remove default HTTP modules in ASP.NET(blog.madskristensen.dk)

submitted by rimsystemsrimsystems(6119) 4 years, 8 months ago

Did you know ASP.NET runs a "PassportAuthentication" HTTP Module on every request? It does, and many more. Find out how to disable the ones you're not using. read more...

add a comment |category: |Views: 37

tags: another

Building an IIS7 HttpModule(aspnetpodcast.com)

submitted by wallymwallym(2085) 4 years, 9 months ago

A short talk on building an IIS7 HttpModule with VC# Express and using it with Visual Wed Developer running .NET 2.0. read more...

add a comment |category: |Views: 144

tags: another

Add variables to standard CSS stylesheets in ASP.NET(madskristensen.dk)

submitted by MHamiltonMHamilton(170) 4 years, 11 months ago

Great way to be more dynamic with your stylesheets. Allows for more flexible website layouts based on dyanmic information. read more...

2 comments |category: |Views: 46

tags: another

Highlighting search keywords the HttpModule way(mhinze.com)

submitted by terrbleterrble(1665) 4 years, 11 months ago

Search Term Highlighter HttpModule for ASP.NET read more...

add a comment |category: |Views: 27

tags: another

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

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 11 months ago

Techniques to move the ViewState to the bottom of the WebForm has been published many times before. What I wanted was adding the functionality to an HttpModule. The technique to move the ViewState is borrowed from Scott Hanselman while the HttpModule implementation is my own. As Scott writes, it is a very low impact technique (0.000995 second) even though it hasn’t been fully tested for a variety of scenarios. read more...

add a comment |category: |Views: 48

tags: another

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

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 11 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. There are different ways to implement the compression but I think an HttpModule is the right choice for this feature. Let's create one and call it CompressionModule. read more...

1 comment |category: |Views: 335

tags: another

WebForm_PostBackOptions is Undefined - Check Your httpModules(stevenharman.net)

submitted by usshermussherm(5285) 5 years, 1 month ago

The WebResource.axd handler is a powerful new addition to asp.net Framework... and it's also a cause of the "WebForm_PostBackOptions not defined" JavaScript error message. But the root cause may really be your httpModules. Read on for more. read more...

1 comment |category: |Views: 717

tags: another

Url Rewriting in ASP.NET (ScottGu)(weblogs.asp.net)

submitted by JemmJemm(9604) 5 years, 3 months ago

People often ask me for guidance on how they can dynamically "re-write" URLs and/or have the ability to publish cleaner URL end-points within their ASP.NET web applications. This blog post summarizes a few approaches you can take to cleanly map or rewrite URLs with ASP.NET, and have the option to structure the URLs of your application however you want. read more...

4 comments |category: |Views: 335

tags: another

Access browser information server-side(madskristensen.dk)

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

Exposes JavaScript variables to the C# code such as WindowHeight, ColorDepth or whatever JavaScript variable you can think of. Plug 'n play HttpModule - no code required. read more...

add a comment |category: |Views: 7

tags: another

HttpModule for query string encryption(madskristensen.dk)

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

Plug this simple HttpModule to your existing web application and all your query strings will automatically be encrypted without you have to change your code. read more...

add a comment |category: |Views: 357

tags: another

Block IP addresses from your website(madskristensen.dk)

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

When an IP address is blocked it stops the response and sends a “403 Forbidden” header. read more...

add a comment |category: |Views: 40

tags: another

ClientBlocker 1.5(nayyeri.net)

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

Keyvan releases new version of his ClientBlocker HTTPModule which lets you to block or trust IPs and block visitors based on their countries using a free webservice. read more...

add a comment |category: |Views: 6

tags: another

Using an HttpModule to detect page refresh(dotnetslackers.com)

submitted by simonebsimoneb(5450) 5 years, 4 months ago

How to detect page refreshes (F5 button or refresh button click) using a HttpModule. read more...

add a comment |category: |Views: 300

tags: another