Inserito index x default routing

This commit is contained in:
Samuele E. Locatelli
2019-09-23 15:18:27 +02:00
parent b9a87a46d5
commit 8ab8247653
4 changed files with 44 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="NKC_WF.Index" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h1>Welcome!</h1>
</asp:Content>
+17
View File
@@ -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 NKC_WF
{
public partial class Index : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("Default.aspx");
}
}
}
+15
View File
@@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <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 NKC_WF {
public partial class Index {
}
}
+8
View File
@@ -212,6 +212,7 @@
<Content Include="Images\test - Copia.svg" />
<Content Include="Images\test.svg" />
<Content Include="Images\Test11.svg" />
<Content Include="Index.aspx" />
<Content Include="MachineLoad.aspx" />
<Content Include="MachineUnload.aspx" />
<Content Include="MachineUnloadSmart.aspx" />
@@ -387,6 +388,13 @@
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="Index.aspx.cs">
<DependentUpon>Index.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Index.aspx.designer.cs">
<DependentUpon>Index.aspx</DependentUpon>
</Compile>
<Compile Include="MachineLoad.aspx.cs">
<DependentUpon>MachineLoad.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>