
Search In
Adding a custom slider into a web page or website enhances the look and feel of the website. Hence, below is the code of making a custom slider and using it in your web site.
I am using jQuery and a plugin called SlidesJS. You just have to include
AutoMapper can be defined as an object to object mapping i.e mapping similar properties in one object of one type to another object of different type. It is a library which is being used to get rid of extra code that is used to map one object in
Using the following code we can calculate the distance between two CLLocationCoordinate2D.
+(double)calculateDistance:(CLLocationCoordinate2D) f to: (CLLocationCoordinate2D) t
{
// CLLocation *locA = [[CLLocation alloc] initWithLatitude:f.la

Code-First Stored Procedure Entity Framework 6.0
This blog shows configuration of code first making use of stored procedure for the entities. For usage of stored procedure, the OnModelCreating method of DBContext should be overriden,this met
What is SOAP??
SOAP stands for Simple Object Access Protocol. SOAP uses HTTP request for intraction between programs. Because of HTTP request is supported by all servers and browsers, that's why it is a best way to communicate between applications.
Some useful WP function for developing themes
have_posts();
This function check whether the current WordPress query has any results. This is a Boolean function, and returns either TRUE or FALSE.
syntax is :
if ( have_posts() ) :
while ( have
While working with MVC project there are scenarios where you stuck and want model popup for the solution.
In MVC applying model popup is the same as we do it in the legacy models or framework.
So we will use JQuery for applying the
If you are an Android app developer, you probably know that Java has been the most popular programming language ruling this arena over the years. However, with the introduction of Kotlin by Google in its I/O conference 2017, developers have got anoth
Hi Readers !
In this Blog we will find how we can Export SQL Server table data to Excel using .net code .
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
us
This is a demo of using Enum.TryParse method for converting string values to enum type.
We have function Enum.TryParse under System namespace in Enum class. This method is used for parsing string values to enum type. Signature of the method is as fo
