diff --git a/NKC_WF/WebUserControls/cmp_BP_sheetList.ascx.cs b/NKC_WF/WebUserControls/cmp_BP_sheetList.ascx.cs
index d2b1885..0ef10ba 100644
--- a/NKC_WF/WebUserControls/cmp_BP_sheetList.ascx.cs
+++ b/NKC_WF/WebUserControls/cmp_BP_sheetList.ascx.cs
@@ -91,7 +91,7 @@ namespace NKC_WF.WebUserControls
{
int totSec = 0;
string answ = "";
- int.TryParse(_timeSec.ToString(), out totSec);
+ int.TryParse(_timeSec.ToString().Replace(".",""), out totSec);
int numMin = totSec / 60;
int numSec = totSec - (60 * numMin);
answ = $"{numMin:00}:{numSec:00}";
diff --git a/NKC_WF/site/BatchPreview.aspx b/NKC_WF/site/BatchPreview.aspx
index 0b0a6f6..c2b578e 100644
--- a/NKC_WF/site/BatchPreview.aspx
+++ b/NKC_WF/site/BatchPreview.aspx
@@ -15,7 +15,7 @@
diff --git a/NKC_WF/site/BatchPreview.aspx.cs b/NKC_WF/site/BatchPreview.aspx.cs
index 16168fc..584e525 100644
--- a/NKC_WF/site/BatchPreview.aspx.cs
+++ b/NKC_WF/site/BatchPreview.aspx.cs
@@ -14,6 +14,11 @@ namespace NKC_WF.site
{
if (!Page.IsPostBack)
{
+ cmp_slider.selValue = 0;
+ //cmp_BP_bunkList.selIndex = 0;
+ //cmp_BP_sheetList.BunkId = cmp_BP_bunkList.BunkIdSel;
+ //cmp_BP_sheetList.selIndex = 0;
+ //cmp_MU_svgViewer.SheetId = cmp_BP_sheetList.SheetIdSel;
doUpdate();
}
cmp_BP_bunkList.eh_doRefresh += Cmp_BP_bunkList_eh_doRefresh;