ASP.NET Upload Setup

ShieldUI Upload for ASP.NET is a server-side wrapper component implemented in the ASP.NET server side component pattern. To get started using the component simply add a reference to the Shield.Web.UI assembly in your ASP.NET project.
Since this is a wrapper of JavaScript Upload component you need to include the references to the CSS and JavaScript resources in the HEAD section of your webpage:

<head id="Head1" runat="server">
<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="js/shieldui-all.min.js" type="text/javascript"></script>
</head>

The javascript resources for client side component you can find on the download page under ShieldUI JavaScript section.

In order to have intelisence into the aspx pages markup you need to add the Shield.Web.UI namespace to the node of the < system.web> section in your Web.config configuration file:

<system.web>
  <pages>
    <controls>
      <add tagPrefix="shield" namespace="Shield.Web.UI" 
          assembly="Shield.Web.UI"/>
    </controls>
  </pages>
</system.web>

The other approach is to add following line of code into your aspx page:

<%@ Register Assembly="Shield.Web.UI" Namespace="Shield.Web.UI"
    TagPrefix="shield" %>

The ASP.NET Wrapper offers a 1:1 correspondence with the relevant properties of the jquery widget.

For example, the following client side initialization:

$("#files").shieldUpload({
    async: {
        enabled: true,
        save: {
            url: "/upload/save"
        },
        remove: {
            url: "/upload/remove"
        }
    }
});

is translated into the following ASP.NET code:

<shield:ShieldUpload ID="files" runat="server">
    <Async Enabled="true">
        <Save Url="/upload/save" />
        <Remove Url="/upload/remove" />
    </Async>
</shield:ShieldUpload>

The following example demonstrates a standard client-side initialization and setup of the widget in JavaScript, while this example is its ASP.NET counterpart.

For examples of server-side scripts, handling the upload, please refer to this page.