Hi @Brian Tan,
You can add some attributes through the parent element (<div>,<span>).
Below is my test for your reference.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm23.aspx.cs" Inherits="WebFormsDemo.WebForm23" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="aa">
<head runat="server">
<title>Test</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div aria-label="search" role="combobox" aria-expanded="true" aria-controls="ComboBox">
<span aria-hidden="true">
<ajaxToolkit:ComboBox Title="Sponsor" ID="ComboBox" runat="server" AutoPostBack="False" DropDownStyle="DropDownList" ClientIDMode="Static" AutoCompleteMode="suggest" CaseSensitive="False" TabIndex="-1">
<asp:ListItem Selected="true" Text="" Value="0"></asp:ListItem>
</ajaxToolkit:ComboBox>
</span>
</div>
<asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="Submit" />
</div>
</form>
</body>
</html>
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.