diff --git a/GPW_Barcode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/GPW_Barcode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index ff40398..727c69d 100644 Binary files a/GPW_Barcode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/GPW_Barcode/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/GPW_Commesse/Controllers/TempHistController.cs b/GPW_Commesse/Controllers/TempHistController.cs index 9721b14..6f00993 100644 --- a/GPW_Commesse/Controllers/TempHistController.cs +++ b/GPW_Commesse/Controllers/TempHistController.cs @@ -1,4 +1,5 @@ using GPW_data; +using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; @@ -10,6 +11,8 @@ namespace GPW_Commesse.Controllers { public class TempHistController : ApiController { + #region Private Methods + /// /// Metodo effettivo recupero dati /// @@ -20,16 +23,33 @@ namespace GPW_Commesse.Controllers private static List getDataFilt(int id, int numRec, DateTime dtRif) { List answ = new List(); - var tabDati = DataProxy.DP.taHT.GetData(id, dtRif, numRec); - // ciclo - foreach (var item in tabDati) + // cerco su redis... + string histTemp = SteamWare.memLayer.ML.redHash($"Temp:Hist:{id}_{dtRif:yyyyMMdd}_{numRec}"); + string rawData = SteamWare.memLayer.ML.getRSV(histTemp); + if (!string.IsNullOrEmpty(rawData)) { - answ.Add(new chartJsXY() { x = item.tempRil, y = item.freq }); + answ = JsonConvert.DeserializeObject>(rawData); + } + else + { + var tabDati = DataProxy.DP.taHT.GetData(id, dtRif, numRec); + // ciclo + foreach (var item in tabDati) + { + answ.Add(new chartJsXY() { x = item.tempRil, y = item.freq }); + } + // salvo + rawData = JsonConvert.SerializeObject(answ); + SteamWare.memLayer.ML.setRSV(histTemp, rawData, 5); } // restituisco return answ; } + #endregion Private Methods + + #region Public Methods + // GET api/TempHist public string Get() { @@ -45,7 +65,6 @@ namespace GPW_Commesse.Controllers return getDataFilt(id, numRec, dtRif); } - // GET api/TempHist/5?date=2020-09-01&numRec=10 public List Get(int id, string date, int numRec) { @@ -54,5 +73,7 @@ namespace GPW_Commesse.Controllers // restituisco oggetto! return getDataFilt(id, numRec, dtRif); } + + #endregion Public Methods } } \ No newline at end of file diff --git a/GPW_Commesse/Controllers/TempRilController.cs b/GPW_Commesse/Controllers/TempRilController.cs index c6f10e3..7877262 100644 --- a/GPW_Commesse/Controllers/TempRilController.cs +++ b/GPW_Commesse/Controllers/TempRilController.cs @@ -1,4 +1,5 @@ using GPW_data; +using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; @@ -10,6 +11,8 @@ namespace GPW_Commesse.Controllers { public class TempRilController : ApiController { + #region Private Methods + /// /// Metodo effettivo recupero dati /// @@ -20,15 +23,34 @@ namespace GPW_Commesse.Controllers private static List getDataFilt(int id, int numRec, DateTime dtRif) { List answ = new List(); - var tabDati = DataProxy.DP.taRT.getByUserPeriod(id, dtRif, numRec); - // ciclo - foreach (var item in tabDati) + + // cerco su redis... + string histTemp = SteamWare.memLayer.ML.redHash($"Temp:Ril:{id}_{dtRif:yyyyMMdd}_{numRec}"); + string rawData = SteamWare.memLayer.ML.getRSV(histTemp); + if (!string.IsNullOrEmpty(rawData)) { - answ.Add(new chartJsTSerie() { x = item.dtRilievo, y = item.tempRil }); + answ = JsonConvert.DeserializeObject>(rawData); + } + else + { + var tabDati = DataProxy.DP.taRT.getByUserPeriod(id, dtRif, numRec); + // ciclo + foreach (var item in tabDati) + { + answ.Add(new chartJsTSerie() { x = item.dtRilievo, y = item.tempRil }); + } + // salvo + rawData = JsonConvert.SerializeObject(answ); + SteamWare.memLayer.ML.setRSV(histTemp, rawData, 5); } // restituisco return answ; } + + #endregion Private Methods + + #region Public Methods + // GET api/TempRil public string Get() { @@ -43,6 +65,7 @@ namespace GPW_Commesse.Controllers // restituisco oggetto! return getDataFilt(id, numRec, dtRif); } + // GET api/TempRil/5?date=2020-09-01&numRec=10 public List Get(int id, string date, int numRec) { @@ -52,5 +75,6 @@ namespace GPW_Commesse.Controllers return getDataFilt(id, numRec, dtRif); } + #endregion Public Methods } } \ No newline at end of file diff --git a/GPW_Commesse/GPW_Commesse.csproj b/GPW_Commesse/GPW_Commesse.csproj index dfdac78..1b7c1a0 100644 --- a/GPW_Commesse/GPW_Commesse.csproj +++ b/GPW_Commesse/GPW_Commesse.csproj @@ -375,7 +375,6 @@ - @@ -390,7 +389,6 @@ - @@ -407,8 +405,6 @@ - - @@ -496,8 +492,6 @@ - - diff --git a/GPW_Commesse/WebUserControls/cmp_chart.ascx b/GPW_Commesse/WebUserControls/cmp_chart.ascx index fda1ee2..60a18f9 100644 --- a/GPW_Commesse/WebUserControls/cmp_chart.ascx +++ b/GPW_Commesse/WebUserControls/cmp_chart.ascx @@ -6,11 +6,15 @@ var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_pageLoaded(function () { redrawAll(); - //console.log('add_pageLoaded!'); + console.log('add_pageLoaded!'); }); - //prm.add_endRequest(function () { + prm.add_endRequest(function () { + redrawAll(); + console.log('add_endRequest!'); + }); + //prm.add_beginRequest(function () { // redrawAll(); - // console.log('add_endRequest!'); + // console.log('add_beginRequest!'); //}); //Sys.Application.add_load(redrawAll); @@ -41,23 +45,27 @@ }, }; - // recupero obj chart - var ctx = document.getElementById('myChartTS').getContext('2d'); - var chart = new Chart(ctx, { - type: 'line', - data: { - datasets: [{ - borderColor: 'rgb(7, 173, 236)', - lineTension: 0, - steppedLine: true, - label: 'Temperatura Rilevata', - data: dataTS - }] - }, - options: myOptions - }); + try { + // recupero obj chart + var ctx = document.getElementById('myChartTS').getContext('2d'); + var chart = new Chart(ctx, { + type: 'line', + data: { + datasets: [{ + borderColor: 'rgb(7, 173, 236)', + lineTension: 0, + steppedLine: true, + label: 'Temperatura Rilevata', + data: dataTS + }] + }, + options: myOptions + }); - //console.log('TS draw!'); + console.log('TS draw!'); + } + catch + { } } // errore in reload! function OnErrorCall_(repo) { @@ -96,20 +104,25 @@ //console.log('bars: ', barVal); // recupero obj chart - var ctx = document.getElementById('myChartHist').getContext('2d'); - var chart = new Chart(ctx, { - type: 'bar', - data: { - labels: barLabels, - datasets: [{ - label: 'Freq. Osservate', - backgroundColor: 'rgb(7, 173, 236)', - data: barVal - }] - }, - options: myOptions - }); + try { + var ctx = document.getElementById('myChartHist').getContext('2d'); + var chart = new Chart(ctx, { + type: 'bar', + data: { + labels: barLabels, + datasets: [{ + label: 'Freq. Osservate', + backgroundColor: 'rgb(7, 173, 236)', + data: barVal + }] + }, + options: myOptions + }); + console.log('Hist draw!'); + } + catch + { } } // errore in reload! function HistOnErrorCall_(repo) { @@ -141,15 +154,15 @@ } function redrawAll() { - console.log('numRec: <%=ddlMaxNum.SelectedValue%>'); + //console.log('numRec: <%=ddlMaxNum.SelectedValue%>'); plotTS(); plotHist(); } - // funzione di drawing ad OGNI pageload! - function pageLoad() { - //redrawAll(); - } + //// funzione di drawing ad OGNI pageload! + //function pageLoad() { + // //redrawAll(); + //} diff --git a/GPW_Commesse/WebUserControls/cmp_chart.ascx.designer.cs b/GPW_Commesse/WebUserControls/cmp_chart.ascx.designer.cs index 4d36c53..c26ac19 100644 --- a/GPW_Commesse/WebUserControls/cmp_chart.ascx.designer.cs +++ b/GPW_Commesse/WebUserControls/cmp_chart.ascx.designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ -// -// Codice generato da uno strumento. +// +// This code was generated by a tool. // -// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se -// il codice viene rigenerato. -// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// //------------------------------------------------------------------------------ namespace GPW_Commesse.WebUserControls @@ -15,29 +15,29 @@ namespace GPW_Commesse.WebUserControls { /// - /// Controllo hfIdxDip. + /// hfIdxDip control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.HiddenField hfIdxDip; /// - /// Controllo hfData. + /// hfData control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.HiddenField hfData; /// - /// Controllo ddlMaxNum. + /// ddlMaxNum control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.DropDownList ddlMaxNum; } diff --git a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx index 393a579..60dc7d5 100644 --- a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx +++ b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx @@ -12,21 +12,29 @@ + +
-
-
+
+
-
+
+ Temperatura: + +
+
Sel globale: - +
+
diff --git a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs index 7aa536e..80e7acb 100644 --- a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs +++ b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.cs @@ -105,6 +105,7 @@ namespace GPW_Commesse.WebUserControls private void cmp_rilTemp_ehCancel(object sender, EventArgs e) { + cmp_toggleTemp.toggleValue = false; activeMode = modoCommesse.elenco; showPanels(); grView.SelectedIndex = -1; @@ -113,6 +114,7 @@ namespace GPW_Commesse.WebUserControls private void cmp_rilTemp_ehSave(object sender, EventArgs e) { + cmp_toggleTemp.toggleValue = false; activeMode = modoCommesse.elenco; showPanels(); } @@ -216,6 +218,7 @@ namespace GPW_Commesse.WebUserControls protected void lbShowTemp_Click(object sender, EventArgs e) { string dataRif = ((LinkButton)sender).CommandArgument; + cmp_toggleTemp.toggleValue = true; // verifico se dip sia attivo... if (DataProxy.currDipIsActive) { @@ -313,6 +316,13 @@ namespace GPW_Commesse.WebUserControls cmp_toggle.ehToggle += Cmp_toggle_ehToggle; cmp_rilTemp.ehCancel += cmp_rilTemp_ehCancel; cmp_rilTemp.ehSave += cmp_rilTemp_ehSave; + + ScriptManager.RegisterStartupScript( + upCharts, + this.GetType(), + "MyAction", + "redrawAll();", + true); } /// @@ -407,6 +417,7 @@ namespace GPW_Commesse.WebUserControls cmp_chart.Visible = true; upMain.Update(); + upFilt.Update(); upCharts.Update(); } diff --git a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.designer.cs b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.designer.cs index 9155733..f6b44f2 100644 --- a/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.designer.cs +++ b/GPW_Commesse/WebUserControls/mod_commUtLog.ascx.designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ -// -// Codice generato da uno strumento. +// +// This code was generated by a tool. // -// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se -// il codice viene rigenerato. -// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// //------------------------------------------------------------------------------ namespace GPW_Commesse.WebUserControls @@ -15,209 +15,227 @@ namespace GPW_Commesse.WebUserControls { /// - /// Controllo hfDataFrom. + /// hfDataFrom control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.HiddenField hfDataFrom; /// - /// Controllo hfDataTo. + /// hfDataTo control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.HiddenField hfDataTo; /// - /// Controllo upFilt. + /// upFilt control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.UpdatePanel upFilt; /// - /// Controllo mod_periodoAnalisi1. + /// mod_periodoAnalisi1 control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::mod_periodoAnalisi mod_periodoAnalisi1; /// - /// Controllo cmp_toggle. + /// cmp_toggleTemp control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW_Commesse.WebUserControls.cmp_toggle cmp_toggleTemp; + + /// + /// cmp_toggle control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.cmp_toggle cmp_toggle; /// - /// Controllo upCharts. + /// cmp_chart1 control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW_Commesse.WebUserControls.cmp_chart cmp_chart1; + + /// + /// upCharts control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.UpdatePanel upCharts; /// - /// Controllo divRilTemp. + /// divRilTemp control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlGenericControl divRilTemp; /// - /// Controllo cmp_rilTemp. + /// cmp_rilTemp control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.cmp_rilTemp cmp_rilTemp; /// - /// Controllo cmp_chart. + /// cmp_chart control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.cmp_chart cmp_chart; /// - /// Controllo upMain. + /// upMain control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.UpdatePanel upMain; /// - /// Controllo divSx. + /// divSx control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlGenericControl divSx; /// - /// Controllo pnlEditOre. + /// pnlEditOre control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Panel pnlEditOre; /// - /// Controllo btnCloseTimb. + /// btnCloseTimb control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnCloseTimb; /// - /// Controllo mod_elencoTimbr1. + /// mod_elencoTimbr1 control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.mod_elencoTimbr mod_elencoTimbr1; /// - /// Controllo mod_commUtMancTimbr1. + /// mod_commUtMancTimbr1 control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.mod_commUtMancTimbr mod_commUtMancTimbr1; /// - /// Controllo divCn. + /// divCn control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlGenericControl divCn; /// - /// Controllo grView. + /// grView control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.GridView grView; /// - /// Controllo ods. + /// ods control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.ObjectDataSource ods; /// - /// Controllo divDx. + /// divDx control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.HtmlControls.HtmlGenericControl divDx; /// - /// Controllo pnlEditCom. + /// pnlEditCom control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Panel pnlEditCom; /// - /// Controllo btnCloseRA. + /// btnCloseRA control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::System.Web.UI.WebControls.Button btnCloseRA; /// - /// Controllo mod_TagCloudProgetti1. + /// mod_TagCloudProgetti1 control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.mod_TagCloudProgetti mod_TagCloudProgetti1; /// - /// Controllo mod_commAttivitaDesk1. + /// mod_commAttivitaDesk1 control. /// /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. /// protected global::GPW_Commesse.WebUserControls.mod_commAttivitaDesk mod_commAttivitaDesk1; } diff --git a/GPW_Commesse/test01.aspx b/GPW_Commesse/test01.aspx index 954a46d..c6bf5f6 100644 --- a/GPW_Commesse/test01.aspx +++ b/GPW_Commesse/test01.aspx @@ -1,7 +1,8 @@ -<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSimpleFull.master" AutoEventWireup="true" CodeBehind="test01.aspx.cs" Inherits="GPW_Commesse.test01" %> +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSimpleFull.master" AutoEventWireup="true" CodeBehind="test01.aspx.cs" Inherits="GPW_Commesse.test01" EnableEventValidation="false" %> <%@ Register Src="~/WebUserControls/cmp_chart.ascx" TagPrefix="uc1" TagName="cmp_chart" %> <%@ Register Src="~/WebUserControls/mod_commUtLog.ascx" TagPrefix="uc1" TagName="mod_commUtLog" %> +<%@ Register Src="~/WebUserControls/cmp_toggle.ascx" TagPrefix="uc1" TagName="cmp_toggle" %> <%-- @@ -32,6 +33,10 @@
+
+ + +
temp
diff --git a/GPW_Commesse/test01.aspx.cs b/GPW_Commesse/test01.aspx.cs index 2d39785..1fc1a48 100644 --- a/GPW_Commesse/test01.aspx.cs +++ b/GPW_Commesse/test01.aspx.cs @@ -14,7 +14,7 @@ namespace GPW_Commesse protected void Page_Load(object sender, EventArgs e) { cmp_chart.dtRif = DateTime.Today; - hfShow01.Value = "false"; + hfShow01.Value = "true"; hfShow02.Value = "true"; } diff --git a/GPW_Commesse/test01.aspx.designer.cs b/GPW_Commesse/test01.aspx.designer.cs index 1f619c7..02cd7a2 100644 --- a/GPW_Commesse/test01.aspx.designer.cs +++ b/GPW_Commesse/test01.aspx.designer.cs @@ -41,6 +41,24 @@ namespace GPW_Commesse /// protected global::System.Web.UI.UpdatePanel upChart; + /// + /// cmp_toggle01 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW_Commesse.WebUserControls.cmp_toggle cmp_toggle01; + + /// + /// cmp_toggle02 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW_Commesse.WebUserControls.cmp_toggle cmp_toggle02; + /// /// lbt01 control. /// diff --git a/GPW_Smart/GPW_Smart.csproj b/GPW_Smart/GPW_Smart.csproj index 2353c72..b8192f1 100644 --- a/GPW_Smart/GPW_Smart.csproj +++ b/GPW_Smart/GPW_Smart.csproj @@ -559,8 +559,6 @@ - -