Fix problemi di compilazione e componenti
Aggiutna master page da progetto ETS_WS aggiunti primi componenti x gestione template
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="PROJ_ETS.About" %>
|
||||
<%@ Page Title="About" Language="C#" MasterPageFile="~/WebMasterPages/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="PROJ_ETS.About" %>
|
||||
|
||||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
|
||||
<hgroup class="title">
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="PROJ_ETS.Contact" %>
|
||||
<%@ Page Title="Contact" Language="C#" MasterPageFile="~/WebMasterPages/Site.Master" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="PROJ_ETS.Contact" %>
|
||||
|
||||
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
|
||||
<hgroup class="title">
|
||||
|
||||
@@ -0,0 +1,495 @@
|
||||
/* zona blocchi Sx/DX */
|
||||
.divSx
|
||||
{
|
||||
float: left;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.divDx
|
||||
{
|
||||
float: right;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.divCenter
|
||||
{
|
||||
float: none;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0 auto 0 auto;
|
||||
}
|
||||
.clearDiv
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
.padSxDx
|
||||
{
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
/* @end */
|
||||
.shadowBox
|
||||
{
|
||||
-moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
|
||||
-webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
/* zona size % div */
|
||||
.half
|
||||
{
|
||||
width: 50%;
|
||||
}
|
||||
.third
|
||||
{
|
||||
width: 33%;
|
||||
}
|
||||
.quarter
|
||||
{
|
||||
width: 25%;
|
||||
}
|
||||
.fifth
|
||||
{
|
||||
width: 20%;
|
||||
}
|
||||
/* end zona size % div */
|
||||
|
||||
/* modal popup*/
|
||||
.modalBackground
|
||||
{
|
||||
background-color: gray;
|
||||
filter: alpha(opacity=70);
|
||||
opacity: 0.7;
|
||||
}
|
||||
/* end */
|
||||
|
||||
/* buttonx con template */
|
||||
.btnNew
|
||||
{
|
||||
background-image: url(../images/new_m.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: right;
|
||||
border: 1px solid #333333;
|
||||
padding: 4px;
|
||||
padding-right: 28px;
|
||||
}
|
||||
.btnDelete
|
||||
{
|
||||
background-image: url(../images/elimina_m.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: right;
|
||||
border: 1px solid #333333;
|
||||
padding: 4px;
|
||||
padding-right: 28px;
|
||||
}
|
||||
.btnGenProto
|
||||
{
|
||||
background-image: url(../images/proto_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #ACACFF;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnGenDoc
|
||||
{
|
||||
background-image: url(../images/doc_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #ACFFAC;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnGenFax
|
||||
{
|
||||
background-image: url(../images/fax_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #ACFFFF;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnGenMail
|
||||
{
|
||||
background-image: url(../images/email_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #FFFFAC;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnUpdate
|
||||
{
|
||||
background-image: url(../images/reload_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #DEDEDE;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
.btnArchivia
|
||||
{
|
||||
background-image: url(../images/Archive_l.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right;
|
||||
background-color: #DD9977;
|
||||
width: 160px;
|
||||
height: 40px;
|
||||
border: 1px solid #333;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
font-size: 10pt;
|
||||
font-family: Arial;
|
||||
}
|
||||
/* end buttons! */
|
||||
|
||||
/* update controls */
|
||||
.rltUpdate
|
||||
{
|
||||
background-color: #FFFF33;
|
||||
}
|
||||
/* end */
|
||||
|
||||
/* zona menù top */
|
||||
.menuNav
|
||||
{
|
||||
background-color: #B5C7DE; /*background-image: -webkit-gradient(linear,left top,left bottom,from( #A5B7CE ),to( #B8E1FD )); background-image: -webkit-linear-gradient( #A5B7CE,#B8E1FD ); background-image: -moz-linear-gradient( #A5B7CE,#B8E1FD ); background-image: -ms-linear-gradient( #A5B7CE,#B8E1FD ); background-image: -o-linear-gradient( #A5B7CE,#B8E1FD ); background-image: linear-gradient( #A5B7CE,#B8E1FD );*/
|
||||
color: #284E98;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
.menuNavSel
|
||||
{
|
||||
background-color: #507CD1; /*background-image: -webkit-gradient(linear,left top,left bottom,from( #B8E1FD ),to( #A5B7CE )); background-image: -webkit-linear-gradient( #B8E1FD,#A5B7CE ); background-image: -moz-linear-gradient( #B8E1FD,#A5B7CE ); background-image: -ms-linear-gradient( #B8E1FD,#A5B7CE ); background-image: -o-linear-gradient( #B8E1FD,#A5B7CE ); background-image: linear-gradient( #B8E1FD,#A5B7CE );*/
|
||||
}
|
||||
.menuItem
|
||||
{
|
||||
width: 200px;
|
||||
}
|
||||
/* end zona menu */
|
||||
|
||||
/* zona colorazione filtri */
|
||||
.filtro_1
|
||||
{
|
||||
background-color: #8888ff;
|
||||
}
|
||||
.filtro_2
|
||||
{
|
||||
background-color: #aaaaff;
|
||||
}
|
||||
.filtro_3
|
||||
{
|
||||
background-color: #ccccff;
|
||||
}
|
||||
.filtro_4
|
||||
{
|
||||
background-color: #dedeff;
|
||||
}
|
||||
.filtro_5
|
||||
{
|
||||
background-color: #efefff;
|
||||
}
|
||||
/* @end */
|
||||
|
||||
/* area gestione etichette tab */
|
||||
.tabLabelGreen
|
||||
{
|
||||
background-color: #DDFFDD;
|
||||
border-top: 1px solid #339933;
|
||||
border-left: 1px solid #339933;
|
||||
border-right: 1px solid #339933;
|
||||
height: 1.5em;
|
||||
vertical-align: middle;
|
||||
padding-top: 0.5em;
|
||||
font-size: 13pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.tabBodyGreen
|
||||
{
|
||||
background-color: #DDFFDD;
|
||||
border-bottom: 1px solid green;
|
||||
border-left: 1px solid green;
|
||||
border-right: 1px solid green;
|
||||
}
|
||||
.tabLabelGray
|
||||
{
|
||||
background-color: #DEDEDE;
|
||||
border-top: 1px solid #333333;
|
||||
border-left: 1px solid #333333;
|
||||
border-right: 1px solid #333333;
|
||||
height: 1.5em;
|
||||
vertical-align: middle;
|
||||
padding-top: 0.5em;
|
||||
font-size: 13pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.tabBodyGray
|
||||
{
|
||||
background-color: #DEDEDE;
|
||||
border-bottom: 1px solid black;
|
||||
border-left: 1px solid black;
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
|
||||
|
||||
/* @end */
|
||||
|
||||
/* dimensione caratteri & co */
|
||||
.fontTitolo
|
||||
{
|
||||
font-size: 24pt;
|
||||
height: 36px;
|
||||
}
|
||||
.fontMedio
|
||||
{
|
||||
font-size: 16pt;
|
||||
}
|
||||
.fontPiccolo
|
||||
{
|
||||
font-size: 8pt;
|
||||
}
|
||||
.labelInput
|
||||
{
|
||||
font-size: 9pt;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
|
||||
/* autocomplete e watermarking */
|
||||
.watermark
|
||||
{
|
||||
color: Gray;
|
||||
font-style: italic;
|
||||
}
|
||||
.autocomplete
|
||||
{
|
||||
width: 400px;
|
||||
color: Gray;
|
||||
background-color: White;
|
||||
font-size: 8pt;
|
||||
padding: 4px 1px 4px 1px;
|
||||
border-bottom: 1px solid #888;
|
||||
}
|
||||
.autocompleteHiglight
|
||||
{
|
||||
width: 400px;
|
||||
color: Black;
|
||||
background-color: Yellow;
|
||||
font-size: 8pt;
|
||||
padding: 4px 1px 4px 1px;
|
||||
border-bottom: 1px solid #888;
|
||||
}
|
||||
.autocompleteElemID
|
||||
{
|
||||
width: 400px;
|
||||
background-color: Red;
|
||||
font-weight: bold;
|
||||
}
|
||||
.autocompleteListCssClass
|
||||
{
|
||||
width: 400px;
|
||||
font-size: 8pt;
|
||||
background-color: White;
|
||||
padding: 2px 2px 2px 2px;
|
||||
border: 1px solid #333;
|
||||
/*
|
||||
z-index: 1;
|
||||
overflow: Auto;
|
||||
height: 30em;
|
||||
*/
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
|
||||
/* gestione blocco dati */
|
||||
.dataBlock
|
||||
{
|
||||
background-color: #FFFFFF;
|
||||
font-size: 9pt;
|
||||
float: left;
|
||||
border-top: solid 1px gray;
|
||||
border-bottom: solid 1px gray;
|
||||
border-left: solid 1px gray;
|
||||
border-right: solid 1px gray;
|
||||
margin: 0px;
|
||||
padding: 4px;
|
||||
vertical-align: text-top;
|
||||
text-align: left;
|
||||
}
|
||||
.dataBlockHeader
|
||||
{
|
||||
border-top: solid 2px gray;
|
||||
border-bottom: solid 1px gray;
|
||||
border-left: solid 2px gray;
|
||||
border-right: solid 2px gray;
|
||||
background-color: #EFEFEF;
|
||||
font-weight: bold;
|
||||
padding: 2px;
|
||||
}
|
||||
.dataBlockSx
|
||||
{
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
.dataBlockDx
|
||||
{
|
||||
float: right;
|
||||
text-align: right;
|
||||
}
|
||||
.dataBlockLabel
|
||||
{
|
||||
border-top: solid 1px #FEFEFE;
|
||||
padding-right: 2px;
|
||||
padding-left: 2px;
|
||||
}
|
||||
.dataBlockValue
|
||||
{
|
||||
color: Black;
|
||||
font-weight: bold;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.dataBlockReset
|
||||
{
|
||||
clear: both;
|
||||
padding-bottom: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.dataBlockResetGray
|
||||
{
|
||||
border-bottom: solid 1px #CECECE;
|
||||
clear: both;
|
||||
padding-bottom: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.dataBlockResetDark
|
||||
{
|
||||
border-bottom: solid 1px #363636;
|
||||
clear: both;
|
||||
padding-bottom: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.dataBlockBtn
|
||||
{
|
||||
background-color: #FAFAFA;
|
||||
border: solid 1px gray;
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
vertical-align: text-top;
|
||||
margin: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
.blockSizeSmallest
|
||||
{
|
||||
width: 175px;
|
||||
}
|
||||
.blockSizeSmaller
|
||||
{
|
||||
width: 200px;
|
||||
}
|
||||
.blockSizeSmall
|
||||
{
|
||||
width: 225px;
|
||||
}
|
||||
.blockSizeMed
|
||||
{
|
||||
width: 250px;
|
||||
}
|
||||
.blockSizeLarge
|
||||
{
|
||||
width: 275px;
|
||||
}
|
||||
.blockSizeXLarge
|
||||
{
|
||||
width: 300px;
|
||||
}
|
||||
.blockSizeXXLarge
|
||||
{
|
||||
width: 350px;
|
||||
}
|
||||
.blockSizeXXXLarge
|
||||
{
|
||||
width: 400px;
|
||||
}
|
||||
/* END gestione blocco dati */
|
||||
|
||||
|
||||
/* standard gridview */
|
||||
.grView
|
||||
{
|
||||
color: #333333;
|
||||
font-size: 8pt;
|
||||
padding-left: 1px;
|
||||
padding-right: 1px;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
.ctrHeaderPager
|
||||
{
|
||||
background-color: #b8b8b8;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
}
|
||||
.ctrHeaderPagerRight
|
||||
{
|
||||
background-color: #b8b8b8;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrHeaderPagerBlue
|
||||
{
|
||||
background-color: #507CD1;
|
||||
height: 1px;
|
||||
}
|
||||
.ctrHeaderPagerBlueRight
|
||||
{
|
||||
background-color: #507CD1;
|
||||
height: 1px;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrFooter
|
||||
{
|
||||
background-color: #507CD1;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
}
|
||||
.ctrRowStyle
|
||||
{
|
||||
vertical-align: top;
|
||||
background-color: #EFF3FB;
|
||||
}
|
||||
/* end gridview */
|
||||
|
||||
.valignMiddle
|
||||
{
|
||||
vertical-align: middle;
|
||||
}
|
||||
@@ -0,0 +1,217 @@
|
||||
.areaTitolo
|
||||
{
|
||||
background-image: url('../images/bg-menu-main.png');
|
||||
background-repeat: repeat-x;
|
||||
color: #ECECEC;
|
||||
}
|
||||
|
||||
/* Schema colori */
|
||||
.priCol-1
|
||||
{
|
||||
background-color: #00B060;
|
||||
}
|
||||
.priCol-2
|
||||
{
|
||||
background-color: #218457;
|
||||
}
|
||||
.priCol-3
|
||||
{
|
||||
background-color: #00733E;
|
||||
}
|
||||
.priCol-4
|
||||
{
|
||||
background-color: #36D88E;
|
||||
}
|
||||
.priCol-5
|
||||
{
|
||||
background-color: #C3FFE4;
|
||||
}
|
||||
.secColA-1
|
||||
{
|
||||
background-color: #0A64A4;
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,from( #0A64A4 ),to( #4481DF ));
|
||||
background-image: -webkit-linear-gradient( #0A64A4,#4481DF );
|
||||
background-image: -moz-linear-gradient( #0A64A4,#4481DF );
|
||||
background-image: -ms-linear-gradient( #0A64A4,#4481DF );
|
||||
background-image: -o-linear-gradient( #0A64A4,#4481DF );
|
||||
background-image: linear-gradient( #0A64A4,#4481DF );
|
||||
}
|
||||
.secColA-2
|
||||
{
|
||||
background-color: #24577B;
|
||||
}
|
||||
.secColA-3
|
||||
{
|
||||
background-color: #03406A;
|
||||
}
|
||||
.secColA-4
|
||||
{
|
||||
/*background-color: #3E94D1;*/
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,from( #4683ff ),to( #2461BF ));
|
||||
background-image: -webkit-linear-gradient( #4683ff,#2461BF );
|
||||
background-image: -moz-linear-gradient( #4683ff,#2461BF );
|
||||
background-image: -ms-linear-gradient( #4683ff,#2461BF );
|
||||
background-image: -o-linear-gradient( #4683ff,#2461BF );
|
||||
background-image: linear-gradient( #4683ff,#2461BF );
|
||||
}
|
||||
.secColA-5
|
||||
{
|
||||
/*background-color: #B8E1FD;*/
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,from( #B8E1FD ),to( #2461BF ));
|
||||
background-image: -webkit-linear-gradient( #B8E1FD,#2461BF );
|
||||
background-image: -moz-linear-gradient( #B8E1FD,#2461BF );
|
||||
background-image: -ms-linear-gradient( #B8E1FD,#2461BF );
|
||||
background-image: -o-linear-gradient( #B8E1FD,#2461BF );
|
||||
background-image: linear-gradient( #B8E1FD,#2461BF );
|
||||
}
|
||||
.secColB-1
|
||||
{
|
||||
background-color: #FF9000;
|
||||
}
|
||||
.secColB-2
|
||||
{
|
||||
background-color: #BF8130;
|
||||
}
|
||||
.secColB-3
|
||||
{
|
||||
background-color: #A65E00;
|
||||
}
|
||||
.secColB-4
|
||||
{
|
||||
background-color: #FFAC40;
|
||||
}
|
||||
.secColB-5
|
||||
{
|
||||
background-color: #FDD7A6;
|
||||
}
|
||||
.comCol-1
|
||||
{
|
||||
background-color: #FF4500;
|
||||
}
|
||||
.comCol-2
|
||||
{
|
||||
background-color: #BF5730;
|
||||
}
|
||||
.comCol-3
|
||||
{
|
||||
background-color: #A62D00;
|
||||
}
|
||||
.comCol-4
|
||||
{
|
||||
background-color: #FF7340;
|
||||
}
|
||||
.comCol-5
|
||||
{
|
||||
background-color: #FFCEBC;
|
||||
}
|
||||
.lightBlue
|
||||
{
|
||||
border: 1px solid #CDCDCD;
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,from( #ddf ),to( #e1f1ff ));
|
||||
background-image: -webkit-linear-gradient( #ddf,#e1f1ff );
|
||||
background-image: -moz-linear-gradient( #ddf,#e1f1ff );
|
||||
background-image: -ms-linear-gradient( #ddf,#e1f1ff );
|
||||
background-image: -o-linear-gradient( #ddf,#e1f1ff );
|
||||
background-image: linear-gradient( #ddf,#e1f1ff );
|
||||
}
|
||||
.lightGray
|
||||
{
|
||||
/*background-color: #EDEDED;*/
|
||||
background-image: -webkit-gradient(linear,left top,left bottom,from( #fff ),to( #f1f1f1 ));
|
||||
background-image: -webkit-linear-gradient( #fff,#f1f1f1 );
|
||||
background-image: -moz-linear-gradient( #fff,#f1f1f1 );
|
||||
background-image: -ms-linear-gradient( #fff,#f1f1f1 );
|
||||
background-image: -o-linear-gradient( #fff,#f1f1f1 );
|
||||
background-image: linear-gradient( #fff,#f1f1f1 );
|
||||
border: 1px solid #CDCDCD;
|
||||
}
|
||||
|
||||
/* FINE Schema colori */
|
||||
|
||||
|
||||
/* area gridview
|
||||
.grView
|
||||
{
|
||||
color: #333333;
|
||||
font-size: 8pt;
|
||||
padding-left: 1px;
|
||||
padding-right: 1px;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
.ctrHeaderPager
|
||||
{
|
||||
background-color: #b8b8b8;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
}
|
||||
.ctrHeaderPagerRight
|
||||
{
|
||||
background-color: #b8b8b8;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrHeaderPagerBlue
|
||||
{
|
||||
height: 1px;
|
||||
}
|
||||
.ctrHeaderPagerBlueRight
|
||||
{
|
||||
background-color: #507CD1;
|
||||
height: 1px;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrFooter
|
||||
{
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
}
|
||||
.ctrRowStyle
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
.ctrAltRowStyle
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
.ctrRowStyleRight
|
||||
{
|
||||
background-color: #EFF3FB;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrAltRowStyleRight
|
||||
{
|
||||
background-color: White;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrInsRowStyle
|
||||
{
|
||||
background-color: #b8b8b8;
|
||||
}
|
||||
.ctrEditRowStyle
|
||||
{
|
||||
background-color: #D1DDF1;
|
||||
}
|
||||
.ctrSelRowStyle
|
||||
{
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
background-color: #D1DDF1;
|
||||
}
|
||||
.ctrSelRowStyleYellow
|
||||
{
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
background-color: Yellow;
|
||||
}
|
||||
FINE area gridview */
|
||||
|
||||
.divTitoloAdmin
|
||||
{
|
||||
background-color: #BF8130;
|
||||
padding: 5px 0px 5px 5px;
|
||||
color: White;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,129 @@
|
||||
/* floating window */
|
||||
.ui-dialog-sw
|
||||
{
|
||||
padding: .2em;
|
||||
overflow: hidden;
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0,0,0,0.8);
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0,0,0,0.8);
|
||||
box-shadow: 0px 5px 10px rgba(0,0,0,0.8);
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-titlebar
|
||||
{
|
||||
padding: .5em 1em .3em;
|
||||
position: relative;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-title
|
||||
{
|
||||
float: left;
|
||||
margin: .1em 16px .2em 0;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-titlebar-close
|
||||
{
|
||||
position: absolute;
|
||||
right: .3em;
|
||||
top: 50%;
|
||||
width: 19px;
|
||||
margin: -10px 0 0 0;
|
||||
padding: 1px;
|
||||
height: 18px;
|
||||
-moz-border-radius: 10px;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-titlebar-close span
|
||||
{
|
||||
display: block;
|
||||
margin: 1px;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-titlebar-close:hover, .ui-dialog-sw .ui-dialog-sw-titlebar-close:focus
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-content
|
||||
{
|
||||
position: relative;
|
||||
border: 0;
|
||||
padding: .5em 1em;
|
||||
background: none;
|
||||
overflow: auto;
|
||||
zoom: 1;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-buttonpane
|
||||
{
|
||||
text-align: left;
|
||||
border-width: 1px 0 0 0;
|
||||
background-image: none;
|
||||
margin: .5em 0 0 0;
|
||||
padding: .3em 1em .5em .4em;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-buttonpane .ui-dialog-sw-buttonset
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
.ui-dialog-sw .ui-dialog-sw-buttonpane button
|
||||
{
|
||||
margin: .5em .4em .5em 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
.ui-dialog-sw .ui-resizable-se
|
||||
{
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
right: 3px;
|
||||
bottom: 3px;
|
||||
}
|
||||
.ui-draggable .ui-dialog-sw-titlebar
|
||||
{
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.ui-dialog-sw
|
||||
{
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-sw .ui-dialog-sw-titlebar
|
||||
{
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
border-left: none;
|
||||
-moz-border-radius: 0;
|
||||
-webkit-border-radius: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-sw .ui-dialog-sw-titlebar-close
|
||||
{
|
||||
}
|
||||
|
||||
.ui-widget-sw
|
||||
{
|
||||
font-family: Arial,sans-serif;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
.ui-widget-sw .ui-widget-sw
|
||||
{
|
||||
font-size: 1em;
|
||||
}
|
||||
.ui-widget-sw input, .ui-widget-sw select, .ui-widget-sw textarea, .ui-widget-sw button
|
||||
{
|
||||
font-family: Arial,sans-serif;
|
||||
font-size: 1em;
|
||||
}
|
||||
.ui-widget-sw-content
|
||||
{
|
||||
border: 1px solid #a8a8a8;
|
||||
background: #ffffff;
|
||||
color: #4f4f4f;
|
||||
}
|
||||
.ui-widget-sw-header
|
||||
{
|
||||
border: 1px solid #a8a8a8;
|
||||
background: #c0c0c0 url('../images/ui-bg_highlight-soft_100_c0c0c0_1x100.png') repeat-x 50% top;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
text-shadow: 0px 1px 0px rgba(255,255,255,0.7);
|
||||
}
|
||||
.ui-widget-sw-header a
|
||||
{
|
||||
color: #4f4f4f;
|
||||
}
|
||||
/* END floating window */
|
||||
@@ -0,0 +1,66 @@
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-weight: inherit;
|
||||
font-style: inherit;
|
||||
font-family: Verdana, Arial;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
color: black;
|
||||
background: white;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
}
|
||||
caption, th, td {
|
||||
text-align: left;
|
||||
font-weight: normal;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: "";
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: "" "";
|
||||
}
|
||||
|
||||
|
||||
.fullscreen
|
||||
{
|
||||
display: block; /*set the div in the top-left corner of the screen*/ /*position: absolute;*/ /* COMMENTATA per iExplorer */
|
||||
top: 0;
|
||||
left: 0; /*set the width and height to 100% of the screen*/
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.bottomWrite
|
||||
{
|
||||
vertical-align: bottom;
|
||||
border-top: #0D0083 1px solid;
|
||||
margin-top: 2px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
.smallText
|
||||
{
|
||||
font-size: 8pt;
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
@import url("MasterPage.css");
|
||||
@import url("BuildBlocks.css");
|
||||
@import url("ExtraComp.css");
|
||||
@import url("ETS.css");
|
||||
|
||||
|
||||
.bodyMainCenter
|
||||
{
|
||||
background-image: url('../images/logo_sw.png');
|
||||
vertical-align: middle;
|
||||
border-left: #0D0083 1px solid; /*border-top: #0D0083 1px solid;*/
|
||||
text-align: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-position: center;
|
||||
background-attachment: scroll;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.bodyCenter
|
||||
{
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.centerMenu
|
||||
{
|
||||
background-color: White;
|
||||
text-align: center;
|
||||
border-width: thin;
|
||||
border-style: groove;
|
||||
border-color: Blue;
|
||||
}
|
||||
A:hover
|
||||
{
|
||||
color: red;
|
||||
}
|
||||
|
||||
.bodyMain
|
||||
{
|
||||
background-image: url('../images/logo_sw.png');
|
||||
vertical-align: top;
|
||||
border-left: #0D0083 1px solid; /*border-top: #0D0083 1px solid;*/
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-position: center; /*was topleft*/
|
||||
background-attachment: scroll;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.bodyMainEmpty
|
||||
{
|
||||
vertical-align: top;
|
||||
border-left: maroon 1px solid;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bodyMainWhite
|
||||
{
|
||||
vertical-align: top;
|
||||
border-left: maroon 1px solid;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-position: center;
|
||||
background-attachment: scroll;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.bodyMainWhite a:hover
|
||||
{
|
||||
color: white;
|
||||
}
|
||||
|
||||
.bodyMainNoLogo
|
||||
{
|
||||
vertical-align: top;
|
||||
border-left: maroon 1px solid;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bodyMainLogoPiccolo
|
||||
{
|
||||
background-image: url('../images/sfondoMedio.png');
|
||||
background-position: 97% 210px;
|
||||
vertical-align: top;
|
||||
border-left: maroon 1px solid;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-attachment: scroll;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="PROJ_ETS._Default" %>
|
||||
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/WebMasterPages/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="PROJ_ETS._Default" %>
|
||||
|
||||
<asp:Content runat="server" ID="FeaturedContent" ContentPlaceHolderID="FeaturedContent">
|
||||
<section class="featured">
|
||||
|
||||
@@ -57,6 +57,9 @@
|
||||
<HintPath>..\packages\Microsoft.AspNet.FriendlyUrls.Core.1.0.0\lib\net45\Microsoft.AspNet.FriendlyUrls.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="Microsoft.ScriptManager.MSAjax">
|
||||
<HintPath>..\packages\Microsoft.AspNet.ScriptManager.MSAjax.4.5.6\lib\net45\Microsoft.ScriptManager.MSAjax.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Core" />
|
||||
@@ -83,9 +86,6 @@
|
||||
<Private>True</Private>
|
||||
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.ScriptManager.MSAjax, Version=4.5.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
|
||||
<HintPath>..\packages\Microsoft.AspNet.ScriptManager.MSAjax.4.5.6\lib\net45\Microsoft.ScriptManager.MSAjax.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.ScriptManager.WebForms, Version=4.5.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
|
||||
<HintPath>..\packages\Microsoft.AspNet.ScriptManager.WebForms.4.5.6\lib\net45\Microsoft.ScriptManager.WebForms.dll</HintPath>
|
||||
</Reference>
|
||||
@@ -190,17 +190,6 @@
|
||||
<Content Include="Images\orderedList8.png" />
|
||||
<Content Include="Images\orderedList9.png" />
|
||||
<Content Include="packages.config" />
|
||||
<None Include="Scripts\jquery-2.0.0.intellisense.js" />
|
||||
<Content Include="Scripts\jquery-2.0.0.js" />
|
||||
<Content Include="Scripts\jquery-2.0.0.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.10.2.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.10.2.min.js" />
|
||||
<Content Include="Scripts\modernizr-2.6.2.js" />
|
||||
<Content Include="Scripts\WebForms\DetailsView.js" />
|
||||
<Content Include="Scripts\WebForms\Focus.js" />
|
||||
<Content Include="Scripts\WebForms\GridView.js" />
|
||||
<Content Include="Scripts\WebForms\Menu.js" />
|
||||
<Content Include="Scripts\WebForms\MenuStandards.js" />
|
||||
<Content Include="Scripts\WebForms\MSAjax\MicrosoftAjax.js" />
|
||||
<Content Include="Scripts\WebForms\MSAjax\MicrosoftAjaxApplicationServices.js" />
|
||||
<Content Include="Scripts\WebForms\MSAjax\MicrosoftAjaxComponentModel.js" />
|
||||
@@ -212,6 +201,19 @@
|
||||
<Content Include="Scripts\WebForms\MSAjax\MicrosoftAjaxTimer.js" />
|
||||
<Content Include="Scripts\WebForms\MSAjax\MicrosoftAjaxWebForms.js" />
|
||||
<Content Include="Scripts\WebForms\MSAjax\MicrosoftAjaxWebServices.js" />
|
||||
<Content Include="WebUserControls\mod_menuBottomFullpage.ascx" />
|
||||
<Content Include="WebUserControls\mod_testata.ascx" />
|
||||
<None Include="Scripts\jquery-2.0.0.intellisense.js" />
|
||||
<Content Include="Scripts\jquery-2.0.0.js" />
|
||||
<Content Include="Scripts\jquery-2.0.0.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.10.2.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.10.2.min.js" />
|
||||
<Content Include="Scripts\modernizr-2.6.2.js" />
|
||||
<Content Include="Scripts\WebForms\DetailsView.js" />
|
||||
<Content Include="Scripts\WebForms\Focus.js" />
|
||||
<Content Include="Scripts\WebForms\GridView.js" />
|
||||
<Content Include="Scripts\WebForms\Menu.js" />
|
||||
<Content Include="Scripts\WebForms\MenuStandards.js" />
|
||||
<Content Include="Scripts\WebForms\SmartNav.js" />
|
||||
<Content Include="Scripts\WebForms\TreeView.js" />
|
||||
<Content Include="Scripts\WebForms\WebForms.js" />
|
||||
@@ -226,7 +228,6 @@
|
||||
<SubType>Designer</SubType>
|
||||
</Content>
|
||||
<Content Include="Bundle.config" />
|
||||
<Content Include="WebMasterPages\AjaxSimpleFull.Master" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="App_Start\BundleConfig.cs" />
|
||||
@@ -256,18 +257,18 @@
|
||||
<DependentUpon>Global.asax</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Site.Master.cs">
|
||||
<Compile Include="WebMasterPages\Site.Master.cs">
|
||||
<DependentUpon>Site.Master</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Site.Master.designer.cs">
|
||||
<Compile Include="WebMasterPages\Site.Master.designer.cs">
|
||||
<DependentUpon>Site.Master</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Site.Mobile.Master.cs">
|
||||
<Compile Include="WebMasterPages\Site.Mobile.Master.cs">
|
||||
<DependentUpon>Site.Mobile.Master</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Site.Mobile.Master.designer.cs">
|
||||
<Compile Include="WebMasterPages\Site.Mobile.Master.designer.cs">
|
||||
<DependentUpon>Site.Mobile.Master</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ViewSwitcher.ascx.cs">
|
||||
@@ -277,23 +278,30 @@
|
||||
<Compile Include="ViewSwitcher.ascx.designer.cs">
|
||||
<DependentUpon>ViewSwitcher.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebMasterPages\AjaxSimpleFull.Master.cs">
|
||||
<DependentUpon>AjaxSimpleFull.Master</DependentUpon>
|
||||
<Compile Include="WebUserControls\mod_menuBottomFullpage.ascx.cs">
|
||||
<DependentUpon>mod_menuBottomFullpage.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WebMasterPages\AjaxSimpleFull.Master.designer.cs">
|
||||
<DependentUpon>AjaxSimpleFull.Master</DependentUpon>
|
||||
<Compile Include="WebUserControls\mod_menuBottomFullpage.ascx.designer.cs">
|
||||
<DependentUpon>mod_menuBottomFullpage.ascx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_testata.ascx.cs">
|
||||
<DependentUpon>mod_testata.ascx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WebUserControls\mod_testata.ascx.designer.cs">
|
||||
<DependentUpon>mod_testata.ascx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="App_Data\" />
|
||||
<Folder Include="WebUserControls\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Site.Master" />
|
||||
<Content Include="WebMasterPages\Site.Master" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Scripts\jquery-2.0.0.min.map" />
|
||||
<Content Include="Site.Mobile.Master" />
|
||||
<Content Include="WebMasterPages\Site.Mobile.Master" />
|
||||
<None Include="Web.Debug.config">
|
||||
<DependentUpon>Web.config</DependentUpon>
|
||||
</None>
|
||||
@@ -301,6 +309,12 @@
|
||||
<DependentUpon>Web.config</DependentUpon>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\ETS_Data\ETS_Data.csproj">
|
||||
<Project>{0a14058f-ed18-4f82-91c9-93945c2c409a}</Project>
|
||||
<Name>ETS_Data</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
</configSections>
|
||||
<connectionStrings>
|
||||
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-PROJ-ETS-20130417144731;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-PROJ-ETS-20130417144731.mdf" />
|
||||
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-PROJ_ETS-20130417144731;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-PROJ_ETS-20130417144731.mdf" />
|
||||
</connectionStrings>
|
||||
<system.web>
|
||||
<compilation debug="true" targetFramework="4.5" />
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="AjaxSimpleFull.master.cs" Inherits="GMW.WebMasterPages.AjaxSimpleFull" %>
|
||||
|
||||
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
|
||||
<%@ Register Src="../WebUserControls/mod_testata.ascx" TagName="mod_testata" TagPrefix="uc1" %>
|
||||
<%@ Register Src="../WebUserControls/mod_menuBottomFullpage.ascx" TagName="mod_menuBottomFullpage" TagPrefix="uc2" %>
|
||||
<% if (false)
|
||||
{ %>
|
||||
<script src="../Scripts/jquery-1.6.4-vsdoc.js" type="text/javascript"></script>
|
||||
<% } %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head id="Head1" runat="server">
|
||||
<title>GMW</title>
|
||||
<link href="../css/Style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" href="../images/favicon.png" type="image/png" />
|
||||
<link rel="shortcut icon" href="../images/favicon.png" type="image/png" />
|
||||
<%--Area jQueryUI via CDN--%>
|
||||
<%--<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js"></script>
|
||||
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.0/jquery-ui.min.js"></script>
|
||||
<link href="../Content/themes/Steamware/css/steamware/jquery-ui-1.9.1.custom.min.css" rel="stylesheet" type="text/css" />--%>
|
||||
<%--Area jQuery via delivery locale--%>
|
||||
<script src="Scripts/jquery-1.8.2.min.js" type="text/javascript"></script>
|
||||
<script src="Scripts/jquery-ui-1.9.0.min.js" type="text/javascript"></script>
|
||||
<link href="../Content/themes/Steamware/css/steamware/jquery-ui-1.9.1.custom.min.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$(".radioBtn").buttonset();
|
||||
//$(".submit").button();
|
||||
|
||||
// oggetto da legare all'update parziale ajax x sistemare btns & co
|
||||
var prm = Sys.WebForms.PageRequestManager.getInstance();
|
||||
prm.add_endRequest(function () {
|
||||
// re-bind your jQuery events here
|
||||
$(".radioBtn").buttonset();
|
||||
//$(".submit").button();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form id="form1" runat="server">
|
||||
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server" EnablePartialRendering="true" EnableScriptGlobalization="true" EnableScriptLocalization="true">
|
||||
</asp:ToolkitScriptManager>
|
||||
<div class="fullscreen">
|
||||
<%--testata pagina--%>
|
||||
<div class="clearDiv">
|
||||
<asp:UpdatePanel ID="updPanelTop" runat="server" UpdateMode="Conditional" RenderMode="Inline">
|
||||
<ContentTemplate>
|
||||
<uc1:mod_testata ID="mod_testata1" runat="server" />
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</div>
|
||||
<%--corpo pagina--%>
|
||||
<div class="clearDiv">
|
||||
<asp:UpdatePanel ID="upMain" runat="server" UpdateMode="Conditional" RenderMode="Inline">
|
||||
<ContentTemplate>
|
||||
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
|
||||
</asp:ContentPlaceHolder>
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</div>
|
||||
<%--footer pagina--%>
|
||||
<div class="clearDiv bottomWrite">
|
||||
<asp:UpdatePanel ID="upLineClock" runat="server" UpdateMode="Conditional" RenderMode="Inline">
|
||||
<ContentTemplate>
|
||||
<uc2:mod_menuBottomFullpage ID="mod_menuBottomFullpage1" runat="server" />
|
||||
</ContentTemplate>
|
||||
</asp:UpdatePanel>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Configuration;
|
||||
|
||||
namespace GMW.WebMasterPages
|
||||
{
|
||||
public partial class AjaxSimpleFull : System.Web.UI.MasterPage
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
Page.Title = ConfigurationManager.AppSettings.Get("_titoloPagina");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 GMW.WebMasterPages {
|
||||
|
||||
|
||||
public partial class AjaxSimpleFull {
|
||||
|
||||
/// <summary>
|
||||
/// Head1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
|
||||
|
||||
/// <summary>
|
||||
/// form1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
|
||||
|
||||
/// <summary>
|
||||
/// ToolkitScriptManager1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::AjaxControlToolkit.ToolkitScriptManager ToolkitScriptManager1;
|
||||
|
||||
/// <summary>
|
||||
/// updPanelTop control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdatePanel updPanelTop;
|
||||
|
||||
/// <summary>
|
||||
/// mod_testata1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::PROJ_ETS.WebUserControls.mod_testata mod_testata1;
|
||||
|
||||
/// <summary>
|
||||
/// upMain control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdatePanel upMain;
|
||||
|
||||
/// <summary>
|
||||
/// ContentPlaceHolder1 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.ContentPlaceHolder ContentPlaceHolder1;
|
||||
|
||||
/// <summary>
|
||||
/// upLineClock control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdatePanel upLineClock;
|
||||
|
||||
/// <summary>
|
||||
/// mod_menuBottomFullpage1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::PROJ_ETS.WebUserControls.mod_menuBottomFullpage mod_menuBottomFullpage1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_menuBottomFullpage.ascx.cs"
|
||||
Inherits="PROJ_ETS.WebUserControls.mod_menuBottomFullpage" %>
|
||||
<% if (false)
|
||||
{ %>
|
||||
<link href="../css/BuildBlocks.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/ETS.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/ExtraComp.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/MasterPage.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/Style.css" rel="stylesheet" type="text/css" />
|
||||
<% } %>
|
||||
<div style="display:inline-block; width:100%;">
|
||||
<div class="divSx">
|
||||
<asp:Label ID="lblDateTime" runat="server" Text="..." CssClass="smallText" />
|
||||
</div>
|
||||
<div class="divDx smallText">
|
||||
<asp:Label runat="server" ID="lblApp" Text="." CssClass="smallText"/><asp:Label ID="lblrev" runat="server" CssClass="smallText"> - </asp:Label>
|
||||
<asp:Label runat="server" ID="lblCopyRight" Text="..." CssClass="smallText"/>
|
||||
<asp:Timer ID="Timer1" runat="server" Interval="10000" OnTick="Timer1_Tick">
|
||||
</asp:Timer>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Data;
|
||||
using System.Configuration;
|
||||
using System.Collections;
|
||||
using System.Web;
|
||||
using System.Web.Security;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.WebControls.WebParts;
|
||||
using System.Web.UI.HtmlControls;
|
||||
|
||||
namespace PROJ_ETS.WebUserControls
|
||||
{
|
||||
public partial class mod_menuBottomFullpage : System.Web.UI.UserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
// sistemo le stringhe...
|
||||
lblApp.Text = string.Format("<b>{0}</b> v.{1}.{2}", ConfigurationManager.AppSettings.Get("appName"), ConfigurationManager.AppSettings.Get("mainRev"), ConfigurationManager.AppSettings.Get("minRev"));
|
||||
lblCopyRight.Text = string.Format("<b>{0}</b>", ConfigurationManager.AppSettings.Get("copyRight"));
|
||||
setTimer();
|
||||
setClock();
|
||||
}
|
||||
/// <summary>
|
||||
/// imposta il tempo di scadenza del timer x il refresh della pagina (della parte top) per evitare che la sessione sul server scada
|
||||
/// </summary>
|
||||
private void setTimer()
|
||||
{
|
||||
Timer1.Interval = Convert.ToInt32(ConfigurationManager.AppSettings.Get("intUpdatePagina_ms"));
|
||||
}
|
||||
protected void Timer1_Tick(object sender, EventArgs e)
|
||||
{
|
||||
setClock();
|
||||
}
|
||||
|
||||
private void setClock()
|
||||
{
|
||||
lblDateTime.Text = DateTime.Now.ToString("HH:mm:ss");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 PROJ_ETS.WebUserControls {
|
||||
|
||||
|
||||
public partial class mod_menuBottomFullpage {
|
||||
|
||||
/// <summary>
|
||||
/// lblDateTime 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.Label lblDateTime;
|
||||
|
||||
/// <summary>
|
||||
/// lblApp 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.Label lblApp;
|
||||
|
||||
/// <summary>
|
||||
/// lblrev 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.Label lblrev;
|
||||
|
||||
/// <summary>
|
||||
/// lblCopyRight 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.Label lblCopyRight;
|
||||
|
||||
/// <summary>
|
||||
/// Timer1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.Timer Timer1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_testata.ascx.cs" Inherits="PROJ_ETS.WebUserControls.mod_testata" %>
|
||||
<% if (false)
|
||||
{ %>
|
||||
<link href="../css/BuildBlocks.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/ETS.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/ExtraComp.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/MasterPage.css" rel="stylesheet" type="text/css" />
|
||||
<link href="../css/Style.css" rel="stylesheet" type="text/css" />
|
||||
<% } %>
|
||||
<div class="divCenter areaTitolo">
|
||||
<div class="divSx fontPiccolo" style="padding: 20px 0px 2px 4px;">
|
||||
<asp:Label runat="server" ID="lblUser" />
|
||||
</div>
|
||||
<div class="divDx fontPiccolo" style="padding: 0px 4px 2px 0px;">
|
||||
<div style="padding-top: 4px; float: right;">
|
||||
<asp:LinkButton ID="btnUpdate" runat="server" OnClick="btnUpdate_Click" Text="Update" />
|
||||
</div>
|
||||
<div class="clearDiv"></div>
|
||||
<div style="padding-top: 4px; float: right;">
|
||||
<asp:Label runat="server" ID="lblDataOra" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="divCenter fontTitolo">
|
||||
<asp:Image runat="server" ID="ibHome" ImageUrl="~/images/home.png" Width="32px" Height="32px" />
|
||||
<b>
|
||||
<asp:Label runat="server" ID="lblTitolo" Text="ETS-WebScip" />
|
||||
</b>
|
||||
</div>
|
||||
</div>
|
||||
<div class="divCenter" style="padding-bottom: 1px;">
|
||||
<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDS" Orientation="Horizontal" RenderingMode="List" StaticDisplayLevels="2" Width="100%" CssClass="menuNav" DynamicHorizontalOffset="2" StaticSubMenuIndent="10px">
|
||||
<DynamicHoverStyle BackColor="#284E98" ForeColor="White" />
|
||||
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" CssClass="menuItem menuNav" />
|
||||
<DynamicMenuStyle BackColor="#B5C7DE" />
|
||||
<DynamicSelectedStyle CssClass="menuNavSel" />
|
||||
<StaticHoverStyle BackColor="#284E98" ForeColor="White" />
|
||||
<StaticMenuItemStyle VerticalPadding="2px" CssClass="menuItem menuNav" />
|
||||
<StaticSelectedStyle BackColor="#507CD1" />
|
||||
</asp:Menu>
|
||||
<asp:SiteMapDataSource ID="SiteMapDS" runat="server" />
|
||||
</div>
|
||||
@@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using ETS_Data;
|
||||
|
||||
namespace PROJ_ETS.WebUserControls
|
||||
{
|
||||
public partial class mod_testata : System.Web.UI.UserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
lblUser.Text = string.Format("{0} ({1})",utils.obj.currUserCognomeNome, utils.obj.currUserId);
|
||||
lblDataOra.Text = DateTime.Now.ToString("dd-MM-yyyy HH:mm:ss");
|
||||
}
|
||||
/// <summary>
|
||||
/// richiesta update
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnUpdate_Click(object sender, EventArgs e)
|
||||
{
|
||||
doFullDataUpdate();
|
||||
}
|
||||
/// <summary>
|
||||
/// svuota session!
|
||||
/// </summary>
|
||||
private void doFullDataUpdate()
|
||||
{
|
||||
//// salvo i dati attuali...
|
||||
//string cod_cdc = SteamWare.memLayer.ML.StringSessionObj("valRicercaCdC");
|
||||
//string lingua = user_std.UtSn.lingua;
|
||||
//string USER_NAME = SteamWare.memLayer.ML.StringSessionObj("USER_NAME");
|
||||
//string DOMINIO = SteamWare.memLayer.ML.StringSessionObj("DOMINIO");
|
||||
//bool isForceUser = user_std.UtSn.isForcedUser;
|
||||
//// salvo i valori delle tab in session...
|
||||
//Dictionary<string, string> sessionParam = SteamWare.memLayer.ML.valSess2SurvUpd;
|
||||
|
||||
// svuoto session e cache per rileggere i dati da Db
|
||||
Session.RemoveAll();
|
||||
Response.Redirect(Request.Url.ToString());
|
||||
|
||||
//Uri MyUrl = Request.Url;
|
||||
//string delimStr = "/";
|
||||
//char[] delimiter = delimStr.ToCharArray();
|
||||
//string[] finalUrl = MyUrl.LocalPath.ToString().Split(delimiter);
|
||||
//int n = finalUrl.Length;
|
||||
//_paginaCorrente = finalUrl[n - 1].ToString();
|
||||
|
||||
//SteamWare.memLayer.ML.flushRegisteredCache();
|
||||
|
||||
//// rimemorizzo
|
||||
//SteamWare.memLayer.ML.setSessionVal("valRicercaCdC", cod_cdc);
|
||||
//user_std.UtSn.startUpUtente(DOMINIO, USER_NAME);
|
||||
//user_std.UtSn.lingua = lingua;
|
||||
//user_std.UtSn.isForcedUser = isForceUser;
|
||||
//DataWrap.DW.resetVocabolario();
|
||||
|
||||
//// risalvo in session i valori...
|
||||
//foreach (KeyValuePair<string, string> kvp in sessionParam)
|
||||
//{
|
||||
// SteamWare.memLayer.ML.setSessionVal(kvp.Key, kvp.Value, true);
|
||||
//}
|
||||
|
||||
//// cambio visibilità del menù laterale...
|
||||
//if (eh_reqUpdateMenu != null)
|
||||
//{
|
||||
// eh_reqUpdateMenu(this, new EventArgs());
|
||||
//}
|
||||
|
||||
//Response.Redirect(_paginaCorrente);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 PROJ_ETS.WebUserControls {
|
||||
|
||||
|
||||
public partial class mod_testata {
|
||||
|
||||
/// <summary>
|
||||
/// lblUser 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.Label lblUser;
|
||||
|
||||
/// <summary>
|
||||
/// btnUpdate 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.LinkButton btnUpdate;
|
||||
|
||||
/// <summary>
|
||||
/// lblDataOra 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.Label lblDataOra;
|
||||
|
||||
/// <summary>
|
||||
/// ibHome 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.Image ibHome;
|
||||
|
||||
/// <summary>
|
||||
/// lblTitolo 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.Label lblTitolo;
|
||||
|
||||
/// <summary>
|
||||
/// Menu1 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.Menu Menu1;
|
||||
|
||||
/// <summary>
|
||||
/// SiteMapDS 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.SiteMapDataSource SiteMapDS;
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
|
||||
<!--
|
||||
See http://nlog-project.org/wiki/Configuration_file
|
||||
for information on customizing logging rules and outputs.
|
||||
-->
|
||||
<targets>
|
||||
<!-- add your targets here -->
|
||||
|
||||
<!--
|
||||
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
|
||||
layout="${longdate} ${uppercase:${level}} ${message}" />
|
||||
-->
|
||||
</targets>
|
||||
|
||||
<rules>
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
<!--
|
||||
<logger name="*" minlevel="Trace" writeTo="f" />
|
||||
-->
|
||||
</rules>
|
||||
</nlog>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -1,19 +1,25 @@
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\NLog.config
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\PROJ-ETS.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\PROJ-ETS.pdb
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Antlr3.Runtime.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\AspNet.ScriptManager.jQuery.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\AspNet.ScriptManager.jQuery.UI.Combined.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Elmah.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\EntityFramework.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\ETS_Data.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.AspNet.FriendlyUrls.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.AspNet.Web.Optimization.WebForms.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.ScriptManager.MSAjax.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.ScriptManager.WebForms.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.Web.Infrastructure.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\System.Web.Optimization.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\System.Web.Providers.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\WebGrease.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\NLog.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\ETS_Data.pdb
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.AspNet.FriendlyUrls.xml
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\EntityFramework.xml
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\NLog.xml
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\obj\Debug\PROJ-ETS.csprojResolveAssemblyReference.cache
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\obj\Debug\PROJ-ETS.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\obj\Debug\PROJ-ETS.pdb
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Elmah.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.AspNet.FriendlyUrls.dll
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.AspNet.FriendlyUrls.xml
|
||||
C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\ETS\PROJ-ETS\PROJ-ETS\bin\Microsoft.ScriptManager.MSAjax.dll
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -15,6 +15,7 @@
|
||||
<package id="Microsoft.AspNet.ScriptManager.WebForms" version="4.5.6" targetFramework="net45" />
|
||||
<package id="Microsoft.AspNet.Web.Optimization" version="1.0.0" targetFramework="net45" />
|
||||
<package id="Microsoft.AspNet.Web.Optimization.WebForms" version="1.0.0" targetFramework="net45" />
|
||||
<package id="Microsoft.ScriptManager.MSAjax" version="1.0.1" targetFramework="net45" />
|
||||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
|
||||
<package id="Modernizr" version="2.6.2" targetFramework="net45" />
|
||||
<package id="WebGrease" version="1.3.0" targetFramework="net45" />
|
||||
|
||||
BIN
Binary file not shown.
+14
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Microsoft.AspNet.ScriptManager.MSAjax</id>
|
||||
<version>4.5.6</version>
|
||||
<title>Microsoft.AspNet.ScriptManager.MSAjax</title>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>Microsoft</owners>
|
||||
<licenseUrl>http://www.microsoft.com/web/webpi/eula/WebDeveloperTools_1_eula_ENU.htm</licenseUrl>
|
||||
<iconUrl>https://download-codeplex.sec.s-msft.com/Download?ProjectName=aspnetwebstack&DownloadId=360555</iconUrl>
|
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||
<description>This package contains the Microsoft.ScriptManager.MSAjax assembly that will automatically register the Microsoft Ajax optimization bundle for Web Forms with ScriptManager.</description>
|
||||
</metadata>
|
||||
</package>
|
||||
Vendored
BIN
Binary file not shown.
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Microsoft.ScriptManager.MSAjax</id>
|
||||
<version>1.0.1</version>
|
||||
<title>Microsoft.ScriptManager.MSAjax</title>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>Microsoft</owners>
|
||||
<licenseUrl>http://www.microsoft.com/web/webpi/eula/web_optimization.htm</licenseUrl>
|
||||
<iconUrl>https://download-codeplex.sec.s-msft.com/Download?ProjectName=aspnetwebstack&DownloadId=360555</iconUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>This contents of this package has been moved to the Microsoft.AspNet.ScriptManager.MSAjax package.</description>
|
||||
<releaseNotes />
|
||||
<copyright />
|
||||
<language />
|
||||
<dependencies>
|
||||
<dependency id="Microsoft.AspNet.ScriptManager.MSAjax" version="4.5.6" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
</package>
|
||||
Reference in New Issue
Block a user