inizio pagina x altro report

This commit is contained in:
Samuele E. Locatelli
2014-05-23 19:14:41 +02:00
parent 883c865d79
commit 0bd2c6198b
4 changed files with 54 additions and 0 deletions
+8
View File
@@ -316,6 +316,7 @@
<LastGenOutput>Reference.cs</LastGenOutput>
</None>
<Content Include="Settings.aspx" />
<Content Include="StdCostList.aspx" />
<Content Include="test.aspx" />
<Content Include="UpdateVoc.aspx" />
<Content Include="Vocabolario.aspx" />
@@ -542,6 +543,13 @@
<Compile Include="Simulation.aspx.designer.cs">
<DependentUpon>Simulation.aspx</DependentUpon>
</Compile>
<Compile Include="StdCostList.aspx.cs">
<DependentUpon>StdCostList.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="StdCostList.aspx.designer.cs">
<DependentUpon>StdCostList.aspx</DependentUpon>
</Compile>
<Compile Include="test.aspx.cs">
<DependentUpon>test.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
+12
View File
@@ -0,0 +1,12 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/c2p/FullPage.master" AutoEventWireup="true" CodeBehind="StdCostList.aspx.cs" Inherits="C2P.StdCostList" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="FeaturedContent" runat="server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
<div class="container marketing">
<br />
Export report in formato tabellare delle righe del dettalgio di costo da vista v_StdCostList
</div>
</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 C2P
{
public partial class StdCostList : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+17
View File
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace C2P
{
public partial class StdCostList
{
}
}