In the script side of the aspx page.
When I add a webdialog I get the following error.
Warning 2 Element 'WebDialogWindow' is not a known element. This can occur if there is a compilation error in the Web site, or the web.config file is missing. C:\code\SCLIntraData3.5\SCLIntraWebApp\SCLIntra.Master 229 8 SCLIntraWebApp
Is there something I am missing?
here is the header info.
<%@ Register tagprefix="igtxt" namespace="Infragistics.WebUI.WebDataInput" Assembly="Infragistics2.WebUI.WebDataInput.v8.2, Version=8.2.20082.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
<%@ Register assembly="Infragistics2.WebUI.UltraWebGrid.v8.2, Version=8.2.20082.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.UltraWebGrid" tagprefix="igtbl" %>
<%@ Register assembly="Infragistics2.WebUI.UltraWebNavigator.v8.2, Version=8.2.20082.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.UltraWebNavigator" tagprefix="ignav" %>
<%@ Register assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="System.Web.UI" tagprefix="cc1" %>
<%@ Register assembly="Infragistics2.Web.v8.2, Version=8.2.20082.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.LayoutControls" tagprefix="ig" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
apparently, you can use a webdialog window in a master page.
However, you cannot use the scriptmanager control on a master page.
You must have one on the client.
And you can only have 1 scriptmanager control on a page at a time, so if you are using a page with out a scriptmanager object you must add one.
So on each child page add a scriptmanger control and everything should be good.
I woud love to hear if there is a better way.
after some funky restarting of projects and readding infragistics references, i was able to add the script manager control to the master page.
Your suggestion of using the ScriptProxyManager works for the client pages that require a script manager control.
Thanks!