From 76cecfbefe32f8e37f637d443ccf7e27c128dc25 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 9 Nov 2016 15:53:52 +0100 Subject: [PATCH] =?UTF-8?q?Aggiunta=20area=20A2=20(compila=20ma=20non=20?= =?UTF-8?q?=C3=A8=20ancora=20tutto=20ok...)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GPW/A2/Barcode.aspx | 5 +++++ GPW/A2/Barcode.aspx.cs | 21 +++++++++++++++++++++ GPW/A2/Barcode.aspx.designer.cs | 24 ++++++++++++++++++++++++ GPW/A2/Default.aspx | 19 +++++++++++++++++++ GPW/A2/Default.aspx.cs | 17 +++++++++++++++++ GPW/A2/Default.aspx.designer.cs | 26 ++++++++++++++++++++++++++ 6 files changed, 112 insertions(+) create mode 100644 GPW/A2/Barcode.aspx create mode 100644 GPW/A2/Barcode.aspx.cs create mode 100644 GPW/A2/Barcode.aspx.designer.cs create mode 100644 GPW/A2/Default.aspx create mode 100644 GPW/A2/Default.aspx.cs create mode 100644 GPW/A2/Default.aspx.designer.cs diff --git a/GPW/A2/Barcode.aspx b/GPW/A2/Barcode.aspx new file mode 100644 index 0000000..32c2459 --- /dev/null +++ b/GPW/A2/Barcode.aspx @@ -0,0 +1,5 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSimpleFullBCode.Master" AutoEventWireup="true" CodeBehind="Barcode.aspx.cs" Inherits="GPW.A2.Barcode" %> +<%@ Register src="../WebUserControls/mod_bCodeTimb.ascx" tagname="mod_bCodeTimb" tagprefix="uc1" %> + + + diff --git a/GPW/A2/Barcode.aspx.cs b/GPW/A2/Barcode.aspx.cs new file mode 100644 index 0000000..0c0db83 --- /dev/null +++ b/GPW/A2/Barcode.aspx.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using GPW_data; + +namespace GPW.A2 +{ + public partial class Barcode : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + if (!Page.IsPostBack) + { + utils.mng.dailyDuties(); + } + } + } +} \ No newline at end of file diff --git a/GPW/A2/Barcode.aspx.designer.cs b/GPW/A2/Barcode.aspx.designer.cs new file mode 100644 index 0000000..15cf9ac --- /dev/null +++ b/GPW/A2/Barcode.aspx.designer.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GPW.A2 { + + + public partial class Barcode { + + /// + /// mod_bCodeTimb1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GPW.WebUserControls.mod_bCodeTimb mod_bCodeTimb1; + } +} diff --git a/GPW/A2/Default.aspx b/GPW/A2/Default.aspx new file mode 100644 index 0000000..eec13bd --- /dev/null +++ b/GPW/A2/Default.aspx @@ -0,0 +1,19 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="GPW.BarcodeArea.Default" %> + + + + + + + + +
+
+

+ Barcode

+

+ Default page

+
+
+ + diff --git a/GPW/A2/Default.aspx.cs b/GPW/A2/Default.aspx.cs new file mode 100644 index 0000000..c7df183 --- /dev/null +++ b/GPW/A2/Default.aspx.cs @@ -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 GPW.BarcodeArea +{ + public partial class Default : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + Response.Redirect("~/A2/Barcode.aspx"); + } + } +} \ No newline at end of file diff --git a/GPW/A2/Default.aspx.designer.cs b/GPW/A2/Default.aspx.designer.cs new file mode 100644 index 0000000..5be5945 --- /dev/null +++ b/GPW/A2/Default.aspx.designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GPW.BarcodeArea +{ + + + public partial class Default + { + + /// + /// form1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + } +}