-
+
diff --git a/GMW/GMW_Term/WebUserControls/mod_search.ascx.cs b/GMW/GMW_Term/WebUserControls/mod_search.ascx.cs
index 533dab8e..d5636c67 100644
--- a/GMW/GMW_Term/WebUserControls/mod_search.ascx.cs
+++ b/GMW/GMW_Term/WebUserControls/mod_search.ascx.cs
@@ -4,6 +4,7 @@ using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
+using SteamWare;
namespace GMW_Term.WebUserControls
{
@@ -15,5 +16,42 @@ namespace GMW_Term.WebUserControls
//lblTitle.Text = (string)(Session["loginName"]);
}
+ ///
+ /// in caso di valore cercato...
+ ///
+ ///
+ ///
+ protected void txtRicerca_TextChanged(object sender, EventArgs e)
+ {
+ valoreRicerca = txtSearch;
+ }
+ ///
+ /// testo contenuto nella textbox
+ ///
+ public string txtSearch
+ {
+ get
+ {
+ return txtRicerca.Text.Trim();
+ }
+ set
+ {
+ txtRicerca.Text = value;
+ }
+ }
+ ///
+ /// valore della scansione barcode
+ ///
+ public string valoreRicerca
+ {
+ get
+ {
+ return memLayer.ML.StringSessionObj("searchValue");
+ }
+ set
+ {
+ memLayer.ML.setSessionVal("searchValue", value, false);
+ }
+ }
}
}
\ No newline at end of file
diff --git a/GMW/GMW_Term/bin/GMW_Term.dll b/GMW/GMW_Term/bin/GMW_Term.dll
index 2ad5896f..d9721279 100644
Binary files a/GMW/GMW_Term/bin/GMW_Term.dll and b/GMW/GMW_Term/bin/GMW_Term.dll differ
diff --git a/GMW/GMW_Term/obj/Debug/GMW_Term.dll b/GMW/GMW_Term/obj/Debug/GMW_Term.dll
index 2ad5896f..d9721279 100644
Binary files a/GMW/GMW_Term/obj/Debug/GMW_Term.dll and b/GMW/GMW_Term/obj/Debug/GMW_Term.dll differ