34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_kitImpCheck.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_kitImpCheck" %>
|
|
|
|
<asp:HiddenField runat="server" ID="hfFileName" />
|
|
<asp:HiddenField runat="server" ID="hfBatchName" />
|
|
<asp:HiddenField runat="server" ID="hfNumTask" />
|
|
<asp:HiddenField runat="server" ID="hfCheckOk" />
|
|
<asp:HiddenField runat="server" ID="hfImported" />
|
|
|
|
<div class="row small">
|
|
<div class="col-3">
|
|
<div class="alert alert-success">
|
|
<strong>Task <%: hfNumTask.Value %></strong>
|
|
</div>
|
|
<asp:LinkButton runat="server" ID="lbtDoAction" CssClass="btn btn-block btn-success" OnClick="lbtDoAction_Click">NEXT STEP <i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i></asp:LinkButton>
|
|
</div>
|
|
<div class="col-6">
|
|
<div class="alert alert-primary">
|
|
<b>Last Action</b><br />
|
|
Indicates a successful or positive action.
|
|
</div>
|
|
</div>
|
|
<div class="col-3">
|
|
<div runat="server" id="divStep1" class="alert">
|
|
<strong>Step 1</strong> File Uploaded.
|
|
</div>
|
|
<div runat="server" id="divStep2" class="alert">
|
|
<strong>Step 2</strong> Data Validated.
|
|
</div>
|
|
<div runat="server" id="divStep3" class="alert">
|
|
<strong>Step 3</strong> Data Imported.
|
|
</div>
|
|
</div>
|
|
</div>
|