Last post Jun 07, 2010 04:43 AM by nareshguree23@gmail.com
Member
3 Points
48 Posts
Jun 07, 2010 12:04 AM|devi.n.np|LINK
hi!
How to add infragistics control in aspx page..I tried many times..but i can't add infragistics control in aspx page..can anyone help me..thx.
Contributor
7260 Points
1902 Posts
Jun 07, 2010 04:43 AM|nareshguree23@gmail.com|LINK
need to add refrences of Infragistics all dll in your projects.
in webconfig, you can find this code in web.config.
<assemblies> <add assembly="Infragistics2.WebUI.Misc.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/> <add assembly="Infragistics2.WebUI.UltraWebListbar.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="Infragistics2.WebUI.WebHtmlEditor.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/> <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </assemblies>
and you need to define infragestic control' tab prefig in your web.config.
<system.web> <pages theme="Standard" pageBaseType="wiseinternet.globalcms.web.common.BasePage" masterPageFile="~/web.common/BaseMaster.Master" enableEventValidation="false"> <controls> <!--infragistics--> <add tagPrefix="igtxt" namespace="Infragistics.WebUI.WebDataInput" assembly="Infragistics2.WebUI.WebDataInput.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/> <add tagPrefix="igtbl" namespace="Infragistics.WebUI.UltraWebGrid" assembly="Infragistics2.WebUI.UltraWebGrid.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/> <add tagPrefix="igsch" namespace="Infragistics.WebUI.WebSchedule" assembly="Infragistics2.WebUI.WebDateChooser.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/> <add tagPrefix="ignav" namespace="Infragistics.WebUI.UltraWebNavigator" assembly="Infragistics2.WebUI.UltraWebNavigator.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/> <add tagPrefix="iglbar" namespace="Infragistics.WebUI.UltraWebListbar" assembly="Infragistics2.WebUI.UltraWebListbar.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/> <add tagPrefix="igmisc" namespace="Infragistics.WebUI.Misc" assembly="Infragistics2.WebUI.Misc.v6.3"/> <add tagPrefix="ighedit" namespace="Infragistics.WebUI.WebHtmlEditor" assembly="Infragistics2.WebUI.WebHtmlEditor.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
</controls> </pages>
and you can add control like:
<igtbl:UltraWebGrid ID="gridAction" runat="server" Visible="true"> <Bands>
it will help you.
happy coding
Member
3 Points
48 Posts
Add infragistics control in aspx page
Jun 07, 2010 12:04 AM|devi.n.np|LINK
hi!
How to add infragistics control in aspx page..I tried many times..but i can't add infragistics control in aspx page..can anyone help me..thx.
Contributor
7260 Points
1902 Posts
Re: Add infragistics control in aspx page
Jun 07, 2010 04:43 AM|nareshguree23@gmail.com|LINK
need to add refrences of Infragistics all dll in your projects.
in webconfig, you can find this code in web.config.
<assemblies>
<add assembly="Infragistics2.WebUI.Misc.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
<add assembly="Infragistics2.WebUI.UltraWebListbar.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
<add assembly="Infragistics2.WebUI.WebHtmlEditor.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
<add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</assemblies>
and you need to define infragestic control' tab prefig in your web.config.
<system.web>
<pages theme="Standard" pageBaseType="wiseinternet.globalcms.web.common.BasePage" masterPageFile="~/web.common/BaseMaster.Master" enableEventValidation="false">
<controls>
<!--infragistics-->
<add tagPrefix="igtxt" namespace="Infragistics.WebUI.WebDataInput" assembly="Infragistics2.WebUI.WebDataInput.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
<add tagPrefix="igtbl" namespace="Infragistics.WebUI.UltraWebGrid" assembly="Infragistics2.WebUI.UltraWebGrid.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
<add tagPrefix="igsch" namespace="Infragistics.WebUI.WebSchedule" assembly="Infragistics2.WebUI.WebDateChooser.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
<add tagPrefix="ignav" namespace="Infragistics.WebUI.UltraWebNavigator" assembly="Infragistics2.WebUI.UltraWebNavigator.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
<add tagPrefix="iglbar" namespace="Infragistics.WebUI.UltraWebListbar" assembly="Infragistics2.WebUI.UltraWebListbar.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
<add tagPrefix="igmisc" namespace="Infragistics.WebUI.Misc" assembly="Infragistics2.WebUI.Misc.v6.3"/>
<add tagPrefix="ighedit" namespace="Infragistics.WebUI.WebHtmlEditor" assembly="Infragistics2.WebUI.WebHtmlEditor.v6.3, Version=6.3.20063.1056, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
</controls>
</pages>
and you can add control like:
<igtbl:UltraWebGrid ID="gridAction" runat="server" Visible="true">
<Bands>
it will help you.
happy coding