You are employed as the senior administrator at Certkiller.com. You make use of Microsoft .NETFramework v3.5 to create a Microsoft ASP.NET application. <br /> You make use of ASP.NET AJAX create a Web form. The code fragment below exists in the Webfrom. (The line numbers is included for reference purposes)<br /> 01 <script type="text/javascript"><br /> 02<br /> 03 Sys.Application.add_init(initComponents);<br /> 04<br /> 05 function initComponents() {0607 }<br /> 08<br /> 09 </script><br /> 10<br /> 11 <asp:ScriptManager ID="ScriptManager1"<br /> 12 runat="server" /><br /> 13 <asp:TextBox runat="server" ID="CKTextBoxA
A、A.Your best option would be to insert Sys.Component.create(CKBehavior, $get('CKTextBoxA'),null, null, null)
B、B.Your best option would be to insert Sys.Component.create(CKBehavior, 'CKTextBoxA', null,null, null)
C、C.Your best option would be to insert $create(CKBehavior, null, null, null, $get('CKTextBoxA'))
D、D.Your best option would be to insert $create(CKBehavior, null, null, null, 'CKTextBoxA')