Announcement

All important changes of my site and my blog will be announced here.

Computer security

This is my hobby. I spend my freetime for it. I am not professional in this area. But I like it very much.

Everything Else

Which doesn’t belong to other categories will land here. It maybe about my daily life, entertainment, music, game … or something like that

Programming

This is my job. That means everyday I must sit before the monitor. Tip something, be annoyed by bugs,… but I simply like it.

Tutorial

When I found something interesting, I would like to share it to everyone. That is the reason for this category comes.

Home » Archive by Tags

Articles tagged with: asp.net

ASP.NET – Use ASHX handler to protect your email from spam
Monday, 31 May, 2010 – 0:00 | No Comment

What happens to your email after a week of publishing into internet, I am sure you will get some of spam mails in your inbox. You may be curious how does the spammer knows your email because you just post it in a website and give it your friends, for example my email at my about page http://hintdesk.com/about/ ? The answer lies at email bot. This bot will crawl through out a web site and …

ASP.NET – Use Context.Cache to cache data for http request
Saturday, 1 May, 2010 – 0:00 | No Comment

The best way to speed up ASP.NET application is to use cache for speeding up the velocity of reading/writing data. Every developer knows that reading/writing memory is orders of magnitude faster than reading/writing files or database on hard disk. Hence reading/writing files or databases for each HTTP request is not a wisdom way. In this small post, I would like to illustrate how man can use ASP.NET for his application.
The ASP.NET application cache is a …

ASP.NET – Show image from database
Sunday, 14 Mar, 2010 – 0:00 | No Comment

One of my friends asks me for an example of reading image from database and showing it on web form in ASP.NET. I send him a link for such tutorial http://www.microsoft.com/germany/msdn/solve/knowhow/howto/allgemein/WieKannIchBilderInEineDatenbankSchreibenUndWiederAuslesen.mspx but it was written in German and he can not follow these steps therefore I decide to translate it to English. I don’t know if there is an English version of this tutorial, I just translate it for my friend in step by step …