Inizio bozza pagina sendParameters
This commit is contained in:
+19
-5
@@ -21,11 +21,9 @@
|
||||
<UpgradeBackupLocation>
|
||||
</UpgradeBackupLocation>
|
||||
<OldToolsVersion>4.0</OldToolsVersion>
|
||||
<IISExpressSSLPort>44384</IISExpressSSLPort>
|
||||
<IISExpressAnonymousAuthentication>
|
||||
</IISExpressAnonymousAuthentication>
|
||||
<IISExpressWindowsAuthentication>
|
||||
</IISExpressWindowsAuthentication>
|
||||
<IISExpressSSLPort>44328</IISExpressSSLPort>
|
||||
<IISExpressAnonymousAuthentication>enabled</IISExpressAnonymousAuthentication>
|
||||
<IISExpressWindowsAuthentication>disabled</IISExpressWindowsAuthentication>
|
||||
<IISExpressUseClassicPipelineMode />
|
||||
<TargetFrameworkProfile />
|
||||
<UseGlobalApplicationHostFile />
|
||||
@@ -518,6 +516,7 @@
|
||||
<Content Include="Scripts\WebForms\WebForms.js" />
|
||||
<Content Include="Scripts\WebForms\WebParts.js" />
|
||||
<Content Include="Scripts\WebForms\WebUIValidation.js" />
|
||||
<Content Include="SendParameters.aspx" />
|
||||
<Content Include="StoricoTC.aspx" />
|
||||
<Content Include="Test.aspx" />
|
||||
<Content Include="tryLogin.aspx" />
|
||||
@@ -561,6 +560,7 @@
|
||||
<Content Include="WebUserControls\mod_regScarti.ascx" />
|
||||
<Content Include="WebUserControls\mod_RepProd_GG.ascx" />
|
||||
<Content Include="WebUserControls\mod_selPeriodo.ascx" />
|
||||
<Content Include="WebUserControls\mod_sendParameters.ascx" />
|
||||
<Content Include="WebUserControls\mod_slideMenu.ascx" />
|
||||
<Content Include="WebUserControls\mod_storicoTC.ascx" />
|
||||
<Content Include="WebUserControls\mod_tempoMSMC.ascx" />
|
||||
@@ -712,6 +712,13 @@
|
||||
<Compile Include="Scarti.aspx.designer.cs">
|
||||
<DependentUpon>Scarti.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SendParameters.aspx.cs">
|
||||
<DependentUpon>SendParameters.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SendParameters.aspx.designer.cs">
|
||||
<DependentUpon>SendParameters.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="StoricoTC.aspx.cs">
|
||||
<DependentUpon>StoricoTC.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
@@ -958,6 +965,13 @@
|
||||
<Compile Include="WebUserControls\mod_selPeriodo.ascx.designer.cs">
|
||||
<DependentUpon>mod_selPeriodo.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_sendParameters.ascx.cs">
|
||||
<DependentUpon>mod_sendParameters.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_sendParameters.ascx.designer.cs">
|
||||
<DependentUpon>mod_sendParameters.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_slideMenu.ascx.cs">
|
||||
<DependentUpon>mod_slideMenu.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/Bootstrap.Master" AutoEventWireup="true" CodeBehind="SendParameters.aspx.cs" Inherits="MoonProTablet.SendParameters" %>
|
||||
|
||||
<%@ Register Src="~/WebUserControls/mod_directLinks.ascx" TagPrefix="uc1" TagName="mod_directLinks" %>
|
||||
<%@ Register Src="~/WebUserControls/mod_sendParameters.ascx" TagPrefix="uc1" TagName="mod_sendParameters" %>
|
||||
<%@ Register Src="~/WebUserControls/mod_dettMacchina.ascx" TagPrefix="uc1" TagName="mod_dettMacchina" %>
|
||||
|
||||
|
||||
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
||||
|
||||
<div class="container-flow m-3" role="main">
|
||||
<div class="row">
|
||||
<div class="col-12 col-md-8 col-lg-9 col-xl-10">
|
||||
<uc1:mod_dettMacchina runat="server" ID="mod_dettMacchina" />
|
||||
<uc1:mod_sendParameters runat="server" ID="mod_sendParameters" />
|
||||
<%--<div class="row textCondens">
|
||||
<div class="col-6">
|
||||
<asp:HyperLink runat="server" ID="hlScarti" NavigateUrl="~/Scarti" CssClass="btn btn-info btn-lg btn-block"><i class="fa fa-bug"></i> Reg. SCARTI</asp:HyperLink>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<asp:HyperLink runat="server" ID="hlControlli" NavigateUrl="~/Controlli" CssClass="btn btn-primary btn-lg btn-block"><i class="fa fa-wrench"></i> Reg.CONTROLLI</asp:HyperLink>
|
||||
</div>
|
||||
</div>--%>
|
||||
</div>
|
||||
<div class="col-12 col-md-4 col-lg-3 col-xl-2">
|
||||
<uc1:mod_directLinks runat="server" ID="mod_directLinks" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</asp:Content>
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace MoonProTablet
|
||||
{
|
||||
public partial class SendParameters : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+44
@@ -0,0 +1,44 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <generato automaticamente>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </generato automaticamente>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace MoonProTablet
|
||||
{
|
||||
|
||||
|
||||
public partial class SendParameters
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_dettMacchina.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::MoonProTablet.WebUserControls.mod_dettMacchina mod_dettMacchina;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_sendParameters.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::MoonProTablet.WebUserControls.mod_sendParameters mod_sendParameters;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo mod_directLinks.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::MoonProTablet.WebUserControls.mod_directLinks mod_directLinks;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_sendParameters.ascx.cs" Inherits="MoonProTablet.WebUserControls.mod_sendParameters" %>
|
||||
|
||||
<div class="row my-2 small">
|
||||
<div class="col-12 text-center">
|
||||
<div class="card">
|
||||
<div class="card-header bg-secondary text-warning">
|
||||
<h4>GESTIONE PARAMETRI MACCHINA</h4>
|
||||
</div>
|
||||
<div class="card-body text-dark">
|
||||
<i>Elenco parametri di configurazione ammessi</i>
|
||||
<div runat="server" id="divNoParam" class="row">
|
||||
Nessun parametro configurabile sull'impianto, funzione non autorizzata
|
||||
</div>
|
||||
<div runat="server" id="divParams" class="row">
|
||||
<div class="col-12">
|
||||
<asp:GridView ID="grView" runat="server" >
|
||||
<Columns>
|
||||
<asp:CommandField ShowSelectButton="True" />
|
||||
</Columns>
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server"></asp:ObjectDataSource>
|
||||
</div>
|
||||
<%--<div class="col">
|
||||
<label for="ddlParameters">Parametro</label>
|
||||
<asp:DropDownList runat="server" ID="ddlParameters" CssClass="form form-control form-comtrol-sm"></asp:DropDownList>
|
||||
</div>
|
||||
<div class="col">
|
||||
<label for="txtValore">Valore</label>
|
||||
<asp:TextBox runat="server" ID="txtValore" CssClass="form form-control form-control-sm" />
|
||||
</div>
|
||||
<div class="col">
|
||||
<asp:LinkButton runat="server" ID="lbtSendParam" CssClass="btn btn-block btn-sm btn-success">SEND PARAMETER</asp:LinkButton>
|
||||
</div>--%>
|
||||
</div>
|
||||
</div>
|
||||
<%--<div class="card-footer"></div>--%>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace MoonProTablet.WebUserControls
|
||||
{
|
||||
public partial class mod_sendParameters : System.Web.UI.UserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <generato automaticamente>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </generato automaticamente>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace MoonProTablet.WebUserControls
|
||||
{
|
||||
|
||||
|
||||
public partial class mod_sendParameters
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Controllo divNoParam.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divNoParam;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo divParams.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divParams;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo grView.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.GridView grView;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo ods.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource ods;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user