If you’re software developer then there is big chance you’ll implement user login feature, and you must store the username and password in your system. Most of developers stored these precious information in database as plain text, yes we did…
Getting Started PetaPoco: Create POCO and perform CRUD
I love PetaPoco and I wrote a post about which Micro-ORM is better, I picked PetaPoco and every time I want to access database I use it, it’s fast and easy, no need to setup the mapping like ORMs, but…
Micro-ORMs War: Dapper vs. Massive vs. PetaPoco
After reading about Massive Rob Conery’s micro-ORM I found there’re more than one out there, and Scott Hanselman had one episode of Hanselminutes about Sam Saffron Dapper and Rob Conery Massive, But after listening to the podcast I start searching about Micro-ORMs…
Free .NET Decompilers
After Redgate announced the .NET Reflector is became a paid-for product, some companies took advantage of this announcement and start to build a free decompilers for developer, and developers start looking for alternatives for .NET Reflector they love it as…
Enforce Join option in Crystal Reports
SAP Crystal Reports enables you to enforce the use of tables while you’re specifying joins: Not Enforced When you select this option, the link you’ve created is used only if it’s explicitly required by the Select statement. This is…
Enable ASP.NET 32-bit application on 64-bit environment
If you’re deploying 32-bit ASP.NET application on 64-bit environment, you can enable 32-bit in IIS, you have 2 ways to do it by: Set Application Pool Defaults. Change specific Application Pool Advanced Settings. Here is the setting you need to…
Enable ASP.NET 32-bit application on 64-bit environment
If you’re deploying 32-bit ASP.NET application on 64-bit environment, you can enable 32-bit in IIS, you have 2 ways to do it by: Set Application Pool Defaults. Change specific Application Pool Advanced Settings. Here is the setting you need to…
HowTo: Register ASP.NET Version to IIS
If you developing ASP.NET 4.0 application & the registered .NET version on IIS is 2.0 or 3.5, there will be error that Application .NET framework version not compatible with IIS registered .NET version. So how to solve this problem, Open…
HowTo: Register ASP.NET Version to IIS
If you developing ASP.NET 4.0 application & the registered .NET version on IIS is 2.0 or 3.5, there will be error that Application .NET framework version not compatible with IIS registered .NET version. So how to solve this problem, Open…
Crystal Reports 13 JavaScript Error
Today I’d faced JavaScript bug caused by SAP Crystal Report’s js file, I Google/Bing it for one hour till I found a solution, the problem is related to this method being obsolete. So here’s the solution I found it: First,…