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"
...
Saturday, July 4, 2015
angularjs grid with sorting,searching and paging functionality in asp.net C#
By Vimal Vataliya
6:25 AM
angularjs,
C#,
datagrid,
sorting-paging-serching in grid,
sql server
Leave a Comment
Read More
Wednesday, May 13, 2015
submit form without passing any data and get all data of form in webmethod
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...