Inizio ad abbozzare planner page (DB ok... pare...)
This commit is contained in:
@@ -366,6 +366,7 @@
|
||||
<Content Include="images\view_s.png" />
|
||||
<Content Include="login.aspx" />
|
||||
<Content Include="menu.aspx" />
|
||||
<Content Include="Planner.aspx" />
|
||||
<Content Include="Properties\PublishProfiles\Donati.pubxml.user" />
|
||||
<Content Include="Properties\PublishProfiles\IIS01.pubxml.user" />
|
||||
<Content Include="Properties\PublishProfiles\IIS02.pubxml.user" />
|
||||
@@ -627,6 +628,13 @@
|
||||
<Compile Include="menu.aspx.designer.cs">
|
||||
<DependentUpon>menu.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Planner.aspx.cs">
|
||||
<DependentUpon>Planner.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Planner.aspx.designer.cs">
|
||||
<DependentUpon>Planner.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="StoricoTC.aspx.cs">
|
||||
<DependentUpon>StoricoTC.aspx</DependentUpon>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/MoonPro.master" AutoEventWireup="true" CodeBehind="Planner.aspx.cs" Inherits="MP_ADM.Planner" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
|
||||
</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 MP_ADM
|
||||
{
|
||||
public partial class Planner : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Generated
+17
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace MP_ADM
|
||||
{
|
||||
|
||||
|
||||
public partial class Planner
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -64,6 +64,14 @@
|
||||
</div>
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
<div class="col-3 py-4">
|
||||
<asp:LinkButton runat="server" ID="lbtGestPlan" CssClass="btn btn-outline-warning btn-block py-3" OnClick="lbtGestPlan_Click">
|
||||
<div><i class="fa fa-map-signs fa-4x"></i></div>
|
||||
<div class="font-weight-bold mt-1 table-dark text-light">
|
||||
<%: traduci("btnPlanner") %>
|
||||
</div>
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
<div class="col-3 py-4">
|
||||
<asp:LinkButton runat="server" ID="lbtDataImport" CssClass="btn btn-outline-info btn-block py-3" OnClick="lbtDataImport_Click">
|
||||
<div><i class="fa fa-download fa-4x"></i></div>
|
||||
|
||||
@@ -46,6 +46,11 @@ public partial class mod_main_help : ApplicationUserControl
|
||||
Response.Redirect("~/GestKIT");
|
||||
}
|
||||
|
||||
protected void lbtGestPlan_Click(object sender, EventArgs e)
|
||||
{
|
||||
Response.Redirect("~/Planner");
|
||||
}
|
||||
|
||||
protected void lbtDataImport_Click(object sender, EventArgs e)
|
||||
{
|
||||
Response.Redirect("~/DataImport");
|
||||
|
||||
@@ -83,6 +83,15 @@ public partial class mod_main_help {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.LinkButton lbtGestKIT;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo lbtGestPlan.
|
||||
/// </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.LinkButton lbtGestPlan;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo lbtDataImport.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user