You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
634 B

4 years ago
  1. <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SwiftTextBox.ascx.cs" Inherits="JMEAgentSystem.Component.AutoComplete.SwiftTextBox" %>
  2. <asp:HiddenField ID = "aValue" runat = "server" />
  3. <asp:TextBox ID = "aText" runat = "server" CssClass="form-control"></asp:TextBox>
  4. <asp:TextBox ID = "aSearch" runat = "server" style = "background-color:#BBF; Width:100%; display:none" CssClass="form-control"></asp:TextBox>
  5. <script src="/Scripts/jquery.min.js"></script>
  6. <script language = "javascript" type ="text/javascript">
  7. $(document).ready(function () {
  8. <% =InitFunction() %>
  9. });
  10. </script>