Gallery for ASP.NET Web Forms
Step 1 of 3: Adding C1Gallery to the Page
Quick Start > Step 1 of 3: Adding C1Gallery to the Page

In this step you'll create and set up a Web site and add an empty C1Gallery control. Complete the following steps to add the C1Gallery control to a Web site:

  1. From the Visual Studio File menu select New Project. The New Project dialog box will appear.
  2. In the New Project dialog box expand a language in the left-hand pane and select Web. In the right pane, choose ASP.NET Empty Web Application, enter a Name for your application, and select OK. A new application will be created.
  3. In the Solution Explorer, right-click the project and choose Add Reference.
  4. In the Add Reference dialog box, locate and select the C1.Web.Wijmo.Controls and C1.Web.Wijmo.Controls.Design assemblies and click OK. The references will be added.
  5. Right-click the project in the Solution Explorer and from the context menu choose Add │ New Item.
  6. In the Add New Item dialog box choose Web Form from the list of templates, name the item "Default.aspx", and click Add. The new page should open.
  7. In Source view, add the following markup at the top of the page to register the C1Gallery assembly:
         
    <%@ Register Assembly="C1.Web.Wijmo.Controls.4" Namespace="C1.Web.Wijmo.Controls.C1Gallery" TagPrefix="cc1" %>
    Depending on the assembly added, you may need to replace "C1.Web.Wijmo.Controls.4" with "C1.Web.Wijmo.Controls.3" above.
  8. Place your mouse between the page's initial <div></div> tags, and add the following markup to add the C1Gallery control to the page:
           
    <cc1:C1Gallery ID="C1Gallery1" runat="server"></cc1:C1Gallery>

In this step you added a C1Gallery control to the form, but the control is currently blank. In the next step of the quick start, you'll add content to the control.