I will appreciate very much any help about this issue. I have been dealing with it for the last week and I couldn't detail and complete examples about this issue.
The problem: I have a text box and ajax autocomplete control extender in my Master Page that it is not working at all. When I type some characters on the text box it doesn't trigger the autocomplete. I have a web service that contains the function code.
I est my code on a single Web Page (No Master Page) and it works perfectly. Also, it works fine if I include the text box and the extender on the Content Page instead of on the Master Page. It is important to keep the text box in the Master Page for me.
I am using Visual Studio 2008 and ASP 3.5. tHANK YOU VERY MUCH.
here is my code:
MASTER PAGE.
<%@ Master Language="VB" AutoEventWireup="true" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="ajax" %>
<%@ Import Namespace = "System.Data" %>
<%@ Import Namespace = "System.Data.SQLClient" %>
<%@ Import Namespace = "System.Web.Script.Services" %>
<%@ Import Namespace="System.Web" %>
<%@ Import Namespace="System.Web.Services&
View Complete Post