Hi friends,
How to do Autocomplete textbox in asp.net with Images similar to imdb site or apple site or julesb.co.uk in my webpage using database connections..
Note:I have to do similarly to above mentioned sites
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ShambhuPosted Dec 14, 2012, 1:48 PM
Previous link is only to display text from database.
But in this uploaded source code this auto complete is with image too.
Procedure to call from Code:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
alter PROCEDURE [dbo].[GetEmployees]
@Param_EmpID varchar(10)
AS
BEGIN
SELECT ENAME, EMPNO FROM EMP WHERE ENAME like @Param_EmpID + '%' ;
END
ShambhuPosted Dec 16, 2012, 6:38 AM
Keep posting keep going...
saravana kumarPosted Dec 15, 2012, 3:14 PM
Satyapriya NayakPosted Dec 13, 2012, 11:24 PM