Angular 2 is now on beta and ASP.NET 5 is on RC version. Both of them are almost near to final release. Use these versions for big projects right now is not a quite right decision because they are still being changed a lot. However, we can begin to make some demo projects to get… Continue reading Quick Start Angular 2 with ASP.NET 5
Tag: asp.net
ASP.NET – Use ASHX handler to protect your email from spam
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… Continue reading ASP.NET – Use ASHX handler to protect your email from spam
ASP.NET – Use Context.Cache to cache data for http request
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… Continue reading ASP.NET – Use Context.Cache to cache data for http request
ASP.NET – Show image from database
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… Continue reading ASP.NET – Show image from database