Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
300
Ultra grid Asp.net
posted

Hi.. All...

How to add infragistics ultra grid my ASP.net Projet???

 

Thank you..

  • 8160
    posted

    Hello nalinsen,

    to use UltraWebGrid you will need these two assemblies:

    Infragistics4.WebUI.Shared.v11.1.dll
    Infragistics4.WebUI.UltraWebGrid.v11.1.dll

    You can add the references.

    Your web.config should look like this:

    <configuration>

      <system.web>

        <compilation debug="false" targetFramework="4.0">

          <assemblies>

            <add assembly="Infragistics4.WebUI.UltraWebGrid.v11.1, Version=11.1.20111.1006, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>

            <add assembly="Infragistics4.WebUI.Shared.v11.1, Version=11.1.20111.1006, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>

            <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

          </assemblies>

        </compilation>

      </system.web>

    </configuration

    And .aspx file:

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

     

    <%@ Register Assembly="Infragistics4.WebUI.UltraWebGrid.v11.1, Version=11.1.20111.1006, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

        Namespace="Infragistics.WebUI.UltraWebGrid" TagPrefix="igtbl" %>

     

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

     

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head runat="server">

        <title></title>

    </head>

    <body>

        <form id="form1" runat="server">

        <div>

            <igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server" Height="200px"

                Width="325px">
    ….


    If you have installed controls you can drag it from the toolbox. Note that if you have 10.3 or 11.1 UltraWebGrid and all Classic controls are hidden from the toolbox.

    Hope this helps