Posts

Showing posts from 2016

Bilingual Dynamic Survey

Image
Hi Guys, I created a bilingual Dynamic Survey application using ASP.NET. Hope you like it.

Request String Encryption in MVC 5

Image
Hi Guys, This time I had a requirement to Encrypt the request string parameters before passing them to the Controller's method. After referring this  solution , I made this solution I hope you like it. 1) SecurityHelper  public class SecurityHelper     {         public static string Encrypt(string plainText)         {             string key = "jdsg432387#";             byte[] EncryptKey = { };             byte[] IV = { 55, 34, 87, 64, 87, 195, 54, 21 };             EncryptKey = System.Text.Encoding.UTF8.GetBytes(key.Substring(0, 8));             DESCryptoServiceProvider des = new DESCryptoServiceProvider();             byte[] inputByte = Encoding.UTF8.GetBytes(plainText);             MemoryStream mStream ...

Current Weather App using Google Maps and forecast.io

Image
Hi Guys, This time I made a real time whether application which uses the phone's GPS coordinates and Google Map's GPS coordinates to fetch whether information. I hope you will like it.

JQuery Calendar : Ummul Qura and Gregorian

Image
Hi Guys, I had a requirement to create a calendar which lets user select ummul qura and gregorian dates for bootstrap theme. So I found this jquery calendar  and modified it to achieve it. I hope you like it. Javascript <script type="text/javascript">             var calendarHijri,         calendarGreg;     var minHijriYear,             minHijriMonth,             minHijriDay,             maxHijriYear,             maxHijriMonth,             maxHijriDay;     /*Update Panel Fix*/     function pageLoad()     {         //Handle Uniform         if (!jQuery().uniform) {             return;         }   ...

Facebook Login in Apache Cordova using Angular JS

Image
Hi Guys, I wanted to integrate facebook login within mobile apps. I found very useful blog from the internet and managed to do that. Hope you like it. http://blog.brunoscopelliti.com/facebook-authentication-in-your-angularjs-web-app/

ATM/Branch Locator : Directions

Image
  Hi Guys, I added the Google Direction Services to ATM Locator. Hope you like it.

ATM/Branch Locator For Sri Lanka

Image
Hi Guys, This time I made a application which locates ATM(s) close to you. Hope you like it.