QUALITY DATA

Web Site Management Tools

1-888-632-7449

Client Area

Dot Net Dash

Asp.Net Health Monitoring / Membership Administration

Download Dot Net Dash

This is the latest release and there is no separate demo version. Your license key determines whether the product is run in trial mode.

Installer

The installer is a code-signed MSI (setup) file that installs the two assemblies into your program files folder

Zip file

The zip file contains the same two assemblies as the code-signed msi setup file and lets you avoid Internet Explorer's Smart Screen filter.

Get a license key

When you run Dot Net Dash, you'll be prompted for a license key. Get a free 30-day trial including technical support if you just want to try it out.

License Key


How to add Dot Net Dash to your web page

Web Forms (Aspx) page

Declare the control in Source Viewof your ASPX page as shown here.

    <%@ Page Language="C#" %>
    <%@ Register Assembly="QualityData.DotNetDash" Namespace="QualityData.Web.Controls" TagPrefix="qd" %>
    <!DOCTYPE html>
    <html>
    <body>
        <form id="form1" runat="server">
            <qd:DotNetDash runat="server" ID="dash" ConnectionStringName="LocalSqlServer" Roles="Administrators" />
        </form>
    </body>
    </html>

Tips:

  • Substitute "VB" instead of "C#" in the Page directive if you are using VB.Net
  • After you add Register Assembly, Build your project to get Intellisense for the next step.
  • Add the control to your form by typing <qd:DotNetDashand then let Intellisense guide you.
  • Remember to reference both QualityData.DotNetDash.dlland QualityData.Web.Management.dll in your project.

Mvc View

Register the "MvcControls" namespace with a usingstatement then use our Html Helper extension to declare the control as shown here.

@using QualityData.Web.MvcControls
@Html.DotNetDash("Administrators").ConnectionStringName("LocalSqlServer")

Tips:

  • After you add the usingstatement, build your project to get Intellisense for the next step.
  • Add the control to your form by typing @Html.DotNetDashand then let Intellisense guide you.
  • Remember to reference both QualityData.DotNetDash.dlland QualityData.Web.Management.dll in your project.