Showing posts from 2017
validation code

validation code

function YourButtonClickEvent() { var validation = Page_ClientValidate(); if (!validation) { …
execute code

execute code

//Create user starts SqlParameter[] spar = new SqlParameter[12]; spar[0] = new SqlParameter("@Use…
jquery validation and calculation

jquery validation and calculation

$(document).ready(function () { $(function () { $('.allow_only_decimal').on(…
Sqlget

Sqlget

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Configuration; using…

What is Cursor in SQL Server with Example

o use cursor in  sql server  that syntax will be like as shown below Syntax to Create Cursor DECLARE …

SQL Server Difference between @@IDENTITY, SCOPE_IDENTITY () and IDENT_CURRENT

@@IDENTITY It will return last or newly inserted record id of any table in current session but it’s not limited t…