Selama beberap tahun ini, saya menggunakan jasa Premium (Pro) penyimpanan foto online di Flickr. Memang tidak gratis sih, ada biaya $6 per tiga bulan ($2/bulan), tapi investasi tersebut menurut saya layak untuk sebuah layanan penyimpanan foto online yang kapasitas penyimpanannya tidak terbatas. Pertama, saya bukan bagian marketingnya Flickr, saya hanya pengguna biasa yang menggunakan layanan… Continue reading
Posts tagged "security"
Encrypt and Decrypt Web.Config (Connection Strings, etc) from ASP Page
Example: How to encrypt/decrypt connectionStrings and SessionState section on Web.Config file? This is a codebehid sample script written on C# to perform Encrypt and Decrypt procedure against few items on Web.Config file. Single ASP.NET page can perform this task easily, so you don’t have to write any code in command prompt. Declare this namespace:
1 2 3 |
using System.Web; using System.Web.Configuration; using System.Web.Security; |