Posts

Showing posts from February, 2018

Auto Search Using Jquery and Generic Handler in Asp.Net/C#.Net

Image
Auto Search Using Jquery and Generic Handler in Asp.Net/C#.Net Step 1 : Create a table :   create table DbTable ( ID int Primary key identity (1,1), Name nvarchar(max) Not null, Manufacturer nvarchar(max), Model nvarchar(max),  ); Step 2 : Open Visual Studio And Right Click on our Project Take a GenericHandler Step 3 : Write This Code in a handler using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Data.Sql; using System.Configuration; using System.Data.SqlClient; using System.Web.Script.Serialization; using System.Web.SessionState; namespace AMS_New_Project.Handler {     /// <summary>     /// Summary description for HW_AssetName     /// </summary>     public class HW_AssetName : IHttpHandler     {         public void ProcessRequest(HttpContext context)         {   ...