diff --git a/NKC_WF/NKC_WF.csproj b/NKC_WF/NKC_WF.csproj
index efde2b9..3bb111a 100644
--- a/NKC_WF/NKC_WF.csproj
+++ b/NKC_WF/NKC_WF.csproj
@@ -400,6 +400,7 @@
+
@@ -923,6 +924,13 @@
cmp_homeButtons.ascx
+
+ cmp_ItemDet.ascx
+ ASPXCodeBehind
+
+
+ cmp_ItemDet.ascx
+
cmp_kitImpCheck.ascx
ASPXCodeBehind
diff --git a/NKC_WF/WebUserControls/cmp_ItemDet.ascx b/NKC_WF/WebUserControls/cmp_ItemDet.ascx
new file mode 100644
index 0000000..d225c65
--- /dev/null
+++ b/NKC_WF/WebUserControls/cmp_ItemDet.ascx
@@ -0,0 +1,27 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_ItemDet.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_ItemDet" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/NKC_WF/WebUserControls/cmp_ItemDet.ascx.cs b/NKC_WF/WebUserControls/cmp_ItemDet.ascx.cs
new file mode 100644
index 0000000..d44611f
--- /dev/null
+++ b/NKC_WF/WebUserControls/cmp_ItemDet.ascx.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace NKC_WF.WebUserControls
+{
+ public partial class cmp_ItemDet : BaseUserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ public int ItemId
+ {
+ get
+ {
+ int answ = 0;
+ int.TryParse(hfItemId.Value, out answ);
+ return answ;
+ }
+ set
+ {
+ hfItemId.Value = value.ToString();
+ frmView.DataBind();
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/NKC_WF/WebUserControls/cmp_ItemDet.ascx.designer.cs b/NKC_WF/WebUserControls/cmp_ItemDet.ascx.designer.cs
new file mode 100644
index 0000000..6abacaa
--- /dev/null
+++ b/NKC_WF/WebUserControls/cmp_ItemDet.ascx.designer.cs
@@ -0,0 +1,44 @@
+//------------------------------------------------------------------------------
+//
+// Codice generato da uno strumento.
+//
+// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
+// il codice viene rigenerato.
+//
+//------------------------------------------------------------------------------
+
+namespace NKC_WF.WebUserControls
+{
+
+
+ public partial class cmp_ItemDet
+ {
+
+ ///
+ /// Controllo hfItemId.
+ ///
+ ///
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ ///
+ protected global::System.Web.UI.WebControls.HiddenField hfItemId;
+
+ ///
+ /// Controllo frmView.
+ ///
+ ///
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ ///
+ protected global::System.Web.UI.WebControls.FormView frmView;
+
+ ///
+ /// Controllo ods.
+ ///
+ ///
+ /// Campo generato automaticamente.
+ /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
+ ///
+ protected global::System.Web.UI.WebControls.ObjectDataSource ods;
+ }
+}
diff --git a/NKC_WF/WebUserControls/cmp_secScreen.ascx b/NKC_WF/WebUserControls/cmp_secScreen.ascx
index a01cbef..f71d33c 100644
--- a/NKC_WF/WebUserControls/cmp_secScreen.ascx
+++ b/NKC_WF/WebUserControls/cmp_secScreen.ascx
@@ -1,4 +1,6 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_secScreen.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_secScreen" %>
+<%@ Register Src="~/WebUserControls/cmp_ItemDet.ascx" TagPrefix="uc1" TagName="cmp_ItemDet" %>
+
@@ -6,6 +8,10 @@
+
+
+
+