best one sir.. very well worked for me.. inspired from your work.. thinking to create our own channel to indian developes
@Csharp-video-tutorialsBlogspot9 жыл бұрын
+sandeep maurya Thank you for the valuable feedback. Free Dot Net & SQL Server training videos for aspiring web developers kzbin.infoplaylists?view=1&sort=dd Download our high quality videos and slides for offline viewing www.pragimtech.com/Order.aspx Code Samples, Text Version of the videos & Slides on my blog csharp-video-tutorials.blogspot.com Tips to use our channel kzbin.info/www/bejne/r2ibYYCtnb5qZtU To receive emails, when new videos are uploaded, please subscribe to our channel using the link below kzbin.info If you like our videos, please click the THUMBS UP button below the video Thanks for sharing the link with your friends who you think would also benefit from them Sharing is fun Thanks Venkat
@grantwilliams98386 жыл бұрын
Really appreciate all the tutorials you've made. My wife believes I'm your greatest fan in Australia. This tutorial really helped out with something at work.
@Russellye5man16 жыл бұрын
Thank you - worked first time. For those having issues when using PlaceHolders, you need to append the reference of the ID of the textbox accordingly. My txtBox id = "txtSearchName", my placeholder ID is "ContentPlaceHolder1", therefore the JS call is: "#ContentPlaceHolder1_txtSearchName").autocomplete - Cheers!
@vutEwa3 жыл бұрын
why not use ClientID of the control?
@Rahim04728 жыл бұрын
Really Amazing Work by Venkat....Never seen such Tutorials on KZbin
@Csharp-video-tutorialsBlogspot9 жыл бұрын
Autocomplete textbox using jquery in asp.net
9 жыл бұрын
Gran aporte amigo :)
@haiderjaafer81649 жыл бұрын
kudvenkat's very beautiful work from you ... so can merge another column with the name in list so when i type letter M it show all names with M merged with its totalmarks...i need to do this idea ...thanks alot
@Csharp-video-tutorialsBlogspot9 жыл бұрын
Haider Jaafer Modify the stored procedure. Alter proc spGetStudentNames @term nvarchar(50) as Begin Select Name + ' - ' + LTRIM(TotalMarks) as Name from tblStudents where Name like @term+ '%' End
@bawagrafix5 жыл бұрын
best one and awesome, looking for this particular tutorial. Thanks for sharing
@kunaldedhia55029 жыл бұрын
Thank you for all your generosity by sharing knowledge across the world. Would we be also getting few videos on Jquery Plugins...? It would be awesome to have them as well.
@wissamfawzy6543Ай бұрын
Great work
@jesussheepakash92893 жыл бұрын
Thank You Sir , God Jesus Christ Bless you and your family
@ganeshk5008 жыл бұрын
Hi Venkat, really helpful.... so can the 1st record get select in the auto completed list once hit tab button
@rajkumarchavan68177 жыл бұрын
Thanks a lot sir, it is very to implement search in asp.net after watching this vd.
@ahmedinooo9 жыл бұрын
Excellent tutorial, thanks alot
@amland38787 жыл бұрын
The ashx is basically searching for the "term" in the query string and passing it as the input variable to the Stored Proc. The Jquery autocomplete function is taking the textbox text and sourcing it to the ashx handler which will search for the "term" variable in the query string. But where exactly are we assigning the textbox text into "term" variable ? the query string might have multiple variable passed, so how the handler function is identifying that as "term" ? or is it some default/automatic setup?
@KochharAmandeep7 жыл бұрын
Exactly what i was searching for in the comments! Please guide me if you found an answer to this
@danyesc76206 жыл бұрын
Thanks a lot, bro..! Very useful..!
@gallamex93168 жыл бұрын
Excelent video
@DataBeach6 жыл бұрын
Excellent tutorial. Thanks for posting. I tried to implement for a Content Page but the final step didn't work. everything was ok up to testing the Handler. What could be the issue?
@GokulVijayPVG7 жыл бұрын
Some of them had commented that dropdown is value is not displaying. Its Bcoz of Javascript Version. You use the Following Link instead of Downloading the file.
@aamazingideasnational9 жыл бұрын
Hi Sir, Hats off to you!! Please post some videos on ANGULAR JS as well. Thanks,
@vutEwa3 жыл бұрын
thank you for sharing this. One question for you. Your javascript shows the source of the handler but doesn't specify the query string to be passed. How did that work without the javascript knowing what name the value being passed corresponds to?
@BigyetiTechnologies8 жыл бұрын
Nope, this is not working for me. With the exception of the ADO using my database with different tables and column names, my code is identical. When I load the handler in the browser and add a term, it works fine. Just not on the textbox.
@vutEwa3 жыл бұрын
I believe that might be because the javascript he shows doesn't associate the value with a query string name. He showed javascript with source to the handler but it is missing the rest. So StudentHandler.ashx should read StudentHandler.ashx?term=
@shivanandareddy28547 жыл бұрын
Hi sir Your videos helped me a lot. can you provide me link for similar like this in mvc-5 i have been searching throughout internet for autocomplete search textbox for mvc but i could not find it
@ankitagarwal20356 жыл бұрын
Thanks it worked for me with slight change in code by adding ClientID as below $("#").autocomplete({
@shebinKH5 жыл бұрын
ANKIT AGARWAL thank you, bro !!
@KoenBoyful6 жыл бұрын
I will try to explain this the best way I can. I am making a domain checker and that works for me, now I have a function that shows some of the domains I have in my var named "domains" once I type in a DOT 'because all the variables domains begin with a dot' all the domains will appear but when I write some text before I put the DOT it will not appear anymore. What do I have to change to let it show the text before the DOT? Here is the code I use, and some picture how it looks right now.
@wojtekk11095 жыл бұрын
Hi, Your code works excellent in web form without master page, but when i try to implement it to web form with master page, jquery doesn't work. Do You know why?
@drusttaib6075 жыл бұрын
solution: for those who has (jQuery) error. add the jquery.js file to your project and link it to your project. the jquery.js is located in external/jquery.js
@erickosorio30198 жыл бұрын
Is great, thanks bro!!
@muhammadmateen48878 жыл бұрын
thank alot sir, i have 67000 records and generic handler is taking too much time is there a way to make it faster?
@vutEwa3 жыл бұрын
indexing should help. 67000 records is peanuts... try MILLIONS of records
@dinoeld38005 жыл бұрын
Thank you very much :D
@aliabdouislem8 жыл бұрын
great work, help me please, how to get the Id when I click on the Name on the TextBox?
@KikeCerati4 жыл бұрын
Hi, Have you an example with DropDownList control? Thanks a lot
@vamshikrishnabasani8 жыл бұрын
Whatever the Text that is typed in the text box is not being passed as an argument to the generic handler....I have implemented the same code that is shown in the video.please help.
@sanjeevdwivedi95389 жыл бұрын
Thank you sir for this videos. its working good but i have a problem in that sir. the auto-complete contain above 1 Lakh record to show its working very slow to show record, so how could increase the performance in that. can you please tell us something in that. thank you.
@stkcansu33117 жыл бұрын
thank u so much...:)
@NSNegi-mt7rx6 жыл бұрын
respected venkat sir i shall be highly obliged to you if you kindly guide me on the following issue i wrote your autocomplete text box using jquery by event handler it is working fine as expected in a page which does not have the master page in the background but when i am pasting the same in content page of a master page it is not giving any result of dropdown autocomplete list i shall be highly if you please give me the solution with warm regards
@softaimsinfotech50567 жыл бұрын
hi venkat sir my control id change in run time automatic so how to slow this problem?
@benjaminjaravacaly5999 жыл бұрын
Hola Kudvenkat, estoy tratando de implementar el autocompletar del vídeo pero no logro entender por qué no funciona el Textbox, desde la Url funciona bien pero desde al formulario no hace nada, te agradezco la ayuda, creo que las librerías de jquery no están funcionado. estoy usando un ¿donde coloco el jquery? gracias si me puedes dar una mano..
@mreggxi36448 жыл бұрын
can you guide me anythings about multi word autocomplete textbox ?
@JediPhantom9 жыл бұрын
is it possible to use a drop down list instead of a textbox, that filters the list as the user types a name
@gabrieleduardozunigacastil19527 жыл бұрын
i don't know why when im running the .ashx file works Great!, But... when im running the website while typing on the Textbox doen't changa anything... can you help me Master #Kudvenkat ???
@benjaminjaravacaly5999 жыл бұрын
Sorry,,, Kudvenkat Hello, I'm trying to implement auto video but do not understand why it does not work Textbox from the URL works well but since the form does nothing, I appreciate the help, I think jquery libraries are not worked. I am using a Where to put the jquery? Thanks if you can give me a hand ..
6 жыл бұрын
Sir how show student pass or fail real-time by jquery
@shravanipadigalla72056 жыл бұрын
Hi sir,I want to clear cache for autocomplete pls help me how to clear that
@pradeepkumar-ez3vo7 жыл бұрын
how to autocomplete a textbox when its present in .ascx page?
@fajarkurniawan56577 жыл бұрын
Select * from tblStudents Create proc spGetStudentsNames @term nvarchar(50) as Begin Select Name from tblStudents where Name like @term + '%' End Msg 111, Level 15, State 1, Procedure spGetStudentsNames, Line 6 'CREATE/ALTER PROCEDURE' must be the first statement in a query batch. help
@Hrshvardhn4812167 жыл бұрын
bro select * from tblstudents is table not procedure .it is used in procedures. thats y ur error saying create/alter procedure must be first statement
@akashgupta15086 жыл бұрын
jquery not appending input text as querystring thats why its showing all value in the table please help
@ajewahar6 жыл бұрын
Hi . autocomplete is not working with master page. Any fix ?
@owaishassan48127 жыл бұрын
i am getting No 'Access-Control-Allow-Origin' header is present on the requested resource error when i put some text in textbox error appears in console my Handler is in different project having different port
@akashgupta15086 жыл бұрын
not working showing all values of in the column of the table
@gallamex93168 жыл бұрын
hola una pregunta cuando corro el proceso en el textbox no me muestra la lista pero en el ashx si lo lo muestra que puede estar mal?? $(document).ready(function () { $("#txtPrueba").autocomplete({ source: 'Handler.ashx' }); });
@angelgutierrez30804 жыл бұрын
Tengo el mismo problema, lo lograstes solucionar?
@shambeldessale64647 жыл бұрын
Hi! I am tried this with a masterpage and entity framework but is not working can someone help me how?
@KochharAmandeep7 жыл бұрын
when you use a master page every control's id is changed. Use a property called ClientIDMode = "Static" for keeping the id same as you named
@babyglimpse2478 жыл бұрын
It didn't worked from me..when i type a letter in textbox it show all values of database..it does not show only specific values..I did all things same as video.
@intanational1018 жыл бұрын
+Archana Sagare I am having the same problem; have you figured it out?
@michaelg80188 жыл бұрын
I had the same problem,you must write the string variable 'term' just like in the video, not only in the procedure but also in the handler If you decide to change the name that will bring you all values
@devilcoastie82957 жыл бұрын
Thank you Kudvenkat and Michael G, I too was experience the problem where the generic Handler was testing correctly, but the TextBox was returning all rows in my project. Michael's comment inspired me to exactly follow the tutorial and not change string term = context.Request["term"] ?? ""; to something more suited to my project which was: shelf. Oddly... after having a successful test, I changed all "term' to 'shelf' and the logic failed to pass the input to the stored procedure correctly. I am new to this functionally so I curious why: string term and ParameterName = "@term", Value = term is so finicky for passing data to the sprock parameter? It is as if there is matching on string term = @term. So... if anyone else is lost a bit of hair... do not vary from the lesson until successful, then make your modifications.
@gabrieleduardozunigacastil19527 жыл бұрын
amm a did the same as you said!! but the problem still the same, generic Handler works perfect but the textbox in my asp.net web form at running time doens't change while typing....