iniziato insert delle smart list

git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@407 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
samuele
2011-12-27 13:36:40 +00:00
parent e7f835c5ae
commit 81063fa93b
20 changed files with 156 additions and 18 deletions
+16
View File
@@ -88,6 +88,13 @@
<Compile Include="Particolare.aspx.designer.cs">
<DependentUpon>Particolare.aspx</DependentUpon>
</Compile>
<Compile Include="SmartList.aspx.cs">
<DependentUpon>SmartList.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="SmartList.aspx.designer.cs">
<DependentUpon>SmartList.aspx</DependentUpon>
</Compile>
<Compile Include="TermUtils.cs" />
<Compile Include="UDC.aspx.cs">
<DependentUpon>UDC.aspx</DependentUpon>
@@ -201,6 +208,13 @@
<Compile Include="WebUserControls\mod_searchResults.ascx.designer.cs">
<DependentUpon>mod_searchResults.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_smartList.ascx.cs">
<DependentUpon>mod_smartList.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_smartList.ascx.designer.cs">
<DependentUpon>mod_smartList.ascx</DependentUpon>
</Compile>
<Compile Include="WS\AutoCompletamento.asmx.cs">
<DependentUpon>AutoCompletamento.asmx</DependentUpon>
<SubType>Component</SubType>
@@ -330,6 +344,8 @@
</ItemGroup>
<ItemGroup>
<Content Include="mazzConnectionStringsTK.config" />
<Content Include="SmartList.aspx" />
<Content Include="WebUserControls\mod_smartList.ascx" />
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
+7
View File
@@ -0,0 +1,7 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/CompactBCode.Master" AutoEventWireup="true" CodeBehind="SmartList.aspx.cs" Inherits="GMW_Term.SmartList" %>
<%@ Register src="WebUserControls/mod_smartList.ascx" tagname="mod_smartList" tagprefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
<uc1:mod_smartList ID="mod_smartList1" runat="server" />
</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 GMW_Term
{
public partial class SmartList : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
+25
View File
@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4963
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace GMW_Term {
public partial class SmartList {
/// <summary>
/// mod_smartList1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::GMW_Term.WebUserControls.mod_smartList mod_smartList1;
}
}
+28 -2
View File
@@ -53,7 +53,7 @@
font-size: 9pt;
}
.quadro1, .quadro2
.quadro1_wide
{
float: none;
width: 100%;
@@ -63,6 +63,24 @@
margin-bottom: 2px;
}
.quadro1, .quadro3
{
float: left;
width: 48%;
text-align: center;
vertical-align: middle;
margin-top: 2px;
margin-bottom: 2px;
}
.quadro2, .quadro4
{
float: right;
width: 48%;
text-align: center;
vertical-align: middle;
margin-top: 2px;
margin-bottom: 2px;
}
.userBanner
{
@@ -355,7 +373,15 @@
white-space: pre;
}
.btnSmartListBig
{
width: 95px;
height: 90px;
border: solid 2px red;
background-color: #FFEE66;
font-weight: bold;
white-space: pre;
}
.btnListBig
{
width: 95px;
+1 -1
View File
@@ -57,7 +57,7 @@
<add key="appName" value="GMW_Term" />
<add key="SiteName" value="San Possidonio" />
<add key="mainRev" value="1.1" />
<add key="minRev" value="402" />
<add key="minRev" value="403" />
<add key="copyRight" value="SteamWare © 2010-2011" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
+6 -3
View File
@@ -1,10 +1,13 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_home.ascx.cs" Inherits="GMW_Term.WebUserControls.mod_home" %>
<div id="1" class="quadro1">
<div id="1" class="quadro1_wide">
<asp:Button ID="btn1" runat="server" CssClass="btnBarcodeBigWide" OnClick="btn1_Click"
AccessKey="1" />
</div>
<div style="clear: both;" height="0px">
</div>
<div id="3" class="quadro2">
<asp:Button ID="btn3" runat="server" CssClass="btnListBigWide" OnClick="btn3_Click1" />
<div id="3" class="quadro3" style="float: left;">
<asp:Button ID="btn3" runat="server" CssClass="btnListBig" OnClick="btn3_Click1" />
</div>
<div id="4" class="quadro4" style="float: right;">
<asp:Button ID="btn4" runat="server" CssClass="btnSmartListBig" OnClick="btn4_Click1" />
</div>
@@ -30,8 +30,8 @@ namespace GMW_Term.WebUserControls
//btn2.AccessKey = "3";
btn3.Text = traduci("TakeList") + "\n[Alt+7]";
btn3.AccessKey = "7";
//btn4.Text = traduci("ActiveTask") + "\n[Alt+9]";
//btn4.AccessKey = "9";
btn4.Text = traduci("SmartList") + "\n[Alt+9]";
btn4.AccessKey = "9";
}
protected void btn1_Click(object sender, EventArgs e)
@@ -51,7 +51,7 @@ namespace GMW_Term.WebUserControls
protected void btn4_Click1(object sender, EventArgs e)
{
Response.Redirect("ActiveTask.aspx");
Response.Redirect("SmartList.aspx");
}
}
}
+10 -1
View File
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4927
// Runtime Version:2.0.50727.4963
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -30,5 +30,14 @@ namespace GMW_Term.WebUserControls {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Button btn3;
/// <summary>
/// btn4 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Button btn4;
}
}
@@ -0,0 +1,2 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_smartList.ascx.cs" Inherits="GMW_Term.WebUserControls.mod_smartList" %>
prova prova prova
@@ -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 GMW_Term.WebUserControls
{
public partial class mod_smartList : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
@@ -0,0 +1,16 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.4963
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace GMW_Term.WebUserControls {
public partial class mod_smartList {
}
}
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -7,7 +7,7 @@
<add key="appName" value="GMW_Term" />
<add key="SiteName" value="Ambivere" />
<add key="mainRev" value="1.1" />
<add key="minRev" value="402" />
<add key="minRev" value="403" />
<add key="copyRight" value="SteamWare © 2010-2011" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
+1 -1
View File
@@ -7,7 +7,7 @@
<add key="appName" value="GMW_Term" />
<add key="SiteName" value="San Possidonio" />
<add key="mainRev" value="1.1" />
<add key="minRev" value="402" />
<add key="minRev" value="403" />
<add key="copyRight" value="SteamWare © 2010-2011" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
+1 -1
View File
@@ -7,7 +7,7 @@
<add key="appName" value="GMW_Term" />
<add key="SiteName" value="Tekal" />
<add key="mainRev" value="1.1" />
<add key="minRev" value="402" />
<add key="minRev" value="403" />
<add key="copyRight" value="SteamWare © 2010-2011" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx#Test.aspx" />
Binary file not shown.
@@ -344,14 +344,14 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:GMWT"
"ProductCode" = "8:{501A0239-9C30-48B1-82FB-A85655092CAC}"
"PackageCode" = "8:{F7350DEC-86CA-4229-840F-3B8F183BEDD3}"
"ProductCode" = "8:{1A84D167-51A6-4D92-9B33-3228084263D0}"
"PackageCode" = "8:{A828DB92-C6CD-4457-88A9-CA0C17AF74F3}"
"UpgradeCode" = "8:{B348C50D-8DAD-4430-AEF0-60800C94CB78}"
"RestartWWWService" = "11:TRUE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.1.402"
"ProductVersion" = "8:1.1.403"
"Manufacturer" = "8:SteamWare s.r.l."
"ARPHELPTELEPHONE" = "8:+39-035460560"
"ARPHELPLINK" = "8:http://www.steamware.net"
@@ -824,7 +824,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9C1BA08A590A44EC9515C0F91AD50A1D"
{
"SourcePath" = "8:..\\..\\SetDirectoryPermission\\obj\\Release\\SetDirectoryPermission.exe"
"SourcePath" = "8:..\\..\\SetDirectoryPermission\\obj\\Debug\\SetDirectoryPermission.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_A89965CB827F476CB8D496FFFC9653DF"
@@ -852,7 +852,7 @@
}
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_9F48A959FA0448498F7A80EFAE9D3368"
{
"SourcePath" = "8:..\\..\\IISCustomActionVB\\IISConsoleVB\\obj\\Release\\IISConsoleVB.exe"
"SourcePath" = "8:..\\..\\IISCustomActionVB\\IISConsoleVB\\obj\\Debug\\IISConsoleVB.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_A89965CB827F476CB8D496FFFC9653DF"