by Yogesh | May 11, 2016 | Bootstrap tutorial
Bootstrap Default Menu In bootstrap , menu can be created using div tag with class “navbar” navbar-inverse: This is used when we do not want default coloring(transparent) , It will create menu with black background. navbar-fixed-top: This class is used when we want to...
by Yogesh | May 4, 2016 | Jquery Tutorial
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Script.Services; using System.Web.Services; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : System.Web.UI.Page { protected...
by Yogesh | Apr 29, 2016 | LINQ Tutorial
Group Join: A group join can produce a grouped hierarchical result where items in the second sequence are matched to items in the first sequence. Unlike the previous inner join, the output of a group join can be organized hierarchically with PublicReviews grouped into...
by Yogesh | Apr 29, 2016 | LINQ Tutorial
Joins in LINQ Join clause: Join take two inputs compare and join them and gives single output sequence. As it compares two input sequence so that It is necessary that both inputs should have some common values. To check equability LINQ uses equals method. Join Types:...
by Yogesh | Apr 28, 2016 | Jquery Tutorial
To remove standard handlers or custom handlers, we simply pass the unbind() method the handler name or custom handler name that needs to be removed jQuery(‘a’).unbind(‘click’). If no parameters are passed to unbind(), it will remove all ...