@@ -39,6 +41,9 @@
Step 1 - File Upload
@using (Html.BeginForm("UploadFile", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
+
+
+
@@ -49,17 +54,22 @@
Step 2 - File IMPORT
@ViewBag.keyList
- @*@using (Html.BeginForm("ProcessFile",
- "Home",
- FormMethod.Post,
- new { enctype = "multipart/form-data" }))
- {
-
-
-
-
-
@ViewBag.Message
- }*@
+
+
+ @if (Model != null)
+ {
+ foreach (var item in Model)
+ {
+
+ @item.chiave
+
+
+ @item.valore
+
+ }
+ }
+
+