Live Traffic Feed

A visitor from Yekaterinburg viewed 'Vimal Vataliya' 6 days 14 hrs ago
A visitor from Voronezh viewed 'filter row datagrid with multiple column on keyup ' 23 days 18 hrs ago
A visitor from St petersburg viewed 'Vimal Vataliya' 25 days 6 hrs ago
A visitor from Boardman viewed 'Vimal Vataliya' 25 days 6 hrs ago
A visitor from Virginia viewed 'Vimal Vataliya' 25 days 6 hrs ago
A visitor from Washington viewed 'filter row datagrid with multiple column on keyup ' 25 days 13 hrs ago
A visitor from Gatchina viewed 'filter row datagrid with multiple column on keyup ' 27 days 1 hr ago
A visitor from Yekaterinburg viewed 'Open Source cryptocurrency Exchanges | Vimal Vatal' 28 days 21 hrs ago
A visitor from Gatchina viewed 'Open Source cryptocurrency Exchanges | Vimal Vatal' 1 month 1 day ago
A visitor from Omsk viewed 'Open Source cryptocurrency Exchanges | Vimal Vatal' 1 month 5 days ago

Saturday, July 4, 2015

angularjs grid with sorting,searching and paging functionality in asp.net C#

Leave a Comment
First you have to download angular.min.js file from official site of angular js https://angularjs.org/ create one grid.aspx page like: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="~/Grid.aspx.cs" Inherits="First.Grid" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server">     <title></title>     <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.1.1/css/bootstrap.no-icons.min.css"        ...
Read More

Wednesday, May 13, 2015

submit form without passing any data and get all data of form in webmethod

Leave a Comment
script for submiting form to the specifix url.. write SubmitForm.js as follows: //to call any web service without passing data and get all form data in web service.. Added By Vimal Vataliya $.fn.SubmitForm = function (url, callback) {     var form = $(this);     if (document.getElementById("test_if")) { }//check if this id is already exist     else {         var ifram = document.createElement("iframe");//create iframe to store json result         ifram.id...
Read More