|
|
|
Use this tool to learn about websites, specifically the one you just entered.
If you find some aspect of it inappropriate it is not our fault.
If you are the owner of this website: yes we are a real search engine, we do have a real web crawler called FyberSpider and you can block it if you feel the urge.
We are in the process of updating this tool. Until we are done just use our search results to check the inclusion status of your site.
Submit your site to major search engines within 48 hours.
Find out if your site has been cataloged by top search engines for only $8.99.
Below you will see site info taken directly from the URL you entered in real time. This is also known as our URL Breakdown tool and can be used independently of our site info tool.
RC 's Code Snippets: QueryString Encryptor HTTPModule
This is just a sample of the content found on this website. Please visit the website to read the entire page.
"RC 's Code Snippets
I will post code snippets that I think may be helpful to other people as well as my opinion on programming topics. The code snippets may be written by me or found elsewhere, but either way: Use at your own risk.
C#, VB.Net, VB, HTML, DHTML, XML, JavaScript, SQL
Monday, May 23, 2005
QueryString Encryptor HTTPModule
I wrote an HttpModule that Encrypts querystrings. This module is seamless to the web developer. You can create html that looks like this: myPage.aspx?id=1&customer=2 and the source on the client will automatically be converted to this: myPage.aspx?eqs=KS%2bthrckechBKT%2bZ8IB44Bz3qvW3853f . Then to access the value in the code behind page you would use QueryString["id"] or QueryString["customer"] . To install it add QSHttpModules.dll to your bin directory and then add the following to your web.config (any where in <system.web>): < httpModules > < add type ="QSHttpModules.QueryStringEncryptor, QSHttpModules" name ="QueryStringEncryptor" /> </ httpModules > The module does this by finding the links and replacing them with the encrypted version as the page is sent out to the client. Then on every request the module looks for an encrypted querystring, if found it decrypts it and rewrites the url. The code is listed below, but you can also download it from my message board at: http://csharpboard.com/ShowPost.aspx?PostID=44 . This module of course takes some overhead to process and it is not recommended to be used as a full security feature. Rights checking should always be in place. But, if a little cpu time is worth hiding the contents of your querystring, this may be for you. As always, use at your own risk. Code:
using System;
using System.Web;
using System.Text;
using System.Text.RegularExpressio"
....
read entire page
|
Links to Pages on Other Domain Names
|
|
Links to Pages on the Same Domain Name
|
|