Home > Asp.net MVC (Page 5)

How to add pin on page load and move it anywhere on Google map using JavaScript

Demo: PinOnMap Here is the source code to show pin on Google map using JavaScript: <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> [crayon-67b784be5ca2f087254344/] </script> // html code <body onload="initialize(new google.maps.LatLng(18.5203,73.8567))" style="font-family: Arial; border: 0 none;"> <input type="text" size="52" name="address" id="Address" />

This Article is TAGGED in , , . Read more

How to do Image preview before upload using jQuery

Demo: ImagePreview Here is the source code for image preview before upload using jQuery: <script src="http://mundrisoft.com/js/jquery.min.js"></script> <script type="text/javascript"> [crayon-67b784be5cb1c252569656/] </script> [crayon-67b784be5cb1f430454707/] Please drop comment if you have any question :)

This Article is TAGGED in , . Read more

How to Schedule Jobs in Windows Azure Worker Roles

The following is an example that demonstrates how I was able to successfully schedule jobs. Start by implementing the IJob interface to create a job that can be managed by Quartz.Net. [crayon-67b784be5ccc9152013189/] Then in the RoleEntryPoint OnStart() method create and configure the scheduler with a trigger and the daily job. This is the part that was greatly lacking in

This Article is TAGGED in , , , . Read more

How to import data from MS Excel

If you have data in excel and you want to add data in you database using C# this is useful example. Follow below steps: Step 1: Create database tables to import data [crayon-67b784be5cdbd918835522/] Step 2: Add below namespaces in your project [crayon-67b784be5cdc1359531108/] Step 3:  Add below method and send file path to this method as parameters. [crayon-67b784be5cdc2404926287/]  This method get file path

This Article is TAGGED in , , , , . Read more