Hi @Donald Symmons ,
Based on your description, I think you can use TextBox autocomplete: the ability to quickly find and select from a pre-populated list of values as you type, utilizing search and filtering.
You can refer to the demo below, and the source code can be changed according to your needs.
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/themes/base/jquery-ui.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js"></script>
<script>
$(function () {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"Ruby",
"Scala",
"Scheme"
];
$("#serachtext").autocomplete({
source: availableTags,
select: function (event, ui) {
location.href = "WebForm1.aspx";
}
});
});
</script>
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.