Hi
I am using VS2010 and C#. This is my first web app so bear with me.
I have created a page which uses the autocomplete extender to fetch results from SQL Server. This all works fine. I now want to use a master page for my site (other pages need to be added). So, I created a master page, and then added a new item 'Web Form using Master Page'.
Both the original and the new master+content pages are sitting in the same directory, as is the web service. When I put a break on the web service, my original page works fine, but the content page does not call the service.
I have tried to copy accross my code and html to this new content page, but I cannot get it to work..
I have a couple of questions.
1. Where should the Script Manager go? Should it be placed on the master or content page ?
2. Where should the page directive to register the AjaxTookit assembly be ?
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
Thanks in advance
Winshent