Yosef Sukianto has written 36 articles

ASP.NET MVC 4 Custom Action Filters #1

Exercise 1: Logging Actions In this exercise, you will learn how to create a custom action log filter by using ASP.NET MVC 4 Filter Providers. For that purpose you will apply a logging filter to the MusicStore site that will record all the activities in the selected controllers. The filter will extend ActionFilterAttributeClass and override OnActionExecuting method to catch each request…

MITOS POSISI #1

”saya tidak bisa memimpin jika saya tidak berada di posisi teratas.” Jika saya harus menyebutkan kekeliruan utama yang dilakukan orang dalam memahami konsep tentang kepemimpinan, maka itu adalah keyakinan bahwa kepemimpinan muncul hanya jika memiliki suatu posisi atau gelar tertentu. Anda tidak perlu memegang suatu posisi tertentu di puncak grup, departemen, divisi, atau organisasi anda…

Make XAMPP/Apache server file outside of htdocs

Open C:\xampp\apache\conf\extra\httpd-vhosts.conf. Un-comment line 19 (NameVirtualHost *:80). Add your virtual host (~line 36): <VirtualHost *:80> DocumentRoot C:\Projects\rekadia\trunk ServerName transitcalculator.localhost <DirectoryC:\Projects\rekadia\trunk> Order allow,deny Allow from all </Directory></VirtualHost> Open your hosts file (C:\Windows\System32\drivers\etc\hosts). Add 127.0.0.1 rekadia.localhost #rekadia to the end of the file (before the Spybot – Search & Destroy stuff if you have that installed). Save…