diff --git a/ETS-WS/ETS-WS.suo b/ETS-WS/ETS-WS.suo index 797ee72..6e38532 100644 Binary files a/ETS-WS/ETS-WS.suo and b/ETS-WS/ETS-WS.suo differ diff --git a/ETS-WS/ETS-WS/ETS-WS.Publish.xml b/ETS-WS/ETS-WS/ETS-WS.Publish.xml index d795f85..e411e89 100644 --- a/ETS-WS/ETS-WS/ETS-WS.Publish.xml +++ b/ETS-WS/ETS-WS/ETS-WS.Publish.xml @@ -1,4 +1,4 @@  - + \ No newline at end of file diff --git a/ETS-WS/ETS-WS/WebUserControls/mod_archivioDocumenti.ascx b/ETS-WS/ETS-WS/WebUserControls/mod_archivioDocumenti.ascx index d24fed3..95ed4dc 100644 --- a/ETS-WS/ETS-WS/WebUserControls/mod_archivioDocumenti.ascx +++ b/ETS-WS/ETS-WS/WebUserControls/mod_archivioDocumenti.ascx @@ -15,9 +15,10 @@ - - + + <%-- - + - + - + - + - <%-- --%> - + + /// restituisce una stringa di max "maxChar caratteri tenendo gli ultimi lastChar + /// + /// + /// + /// + public string shortMe(object _strOrig, object _maxChar, object _lastChar) + { + string answ = _strOrig.ToString(); + int maxChar=Convert.ToInt32(_maxChar); + int lastChar=Convert.ToInt32(_lastChar); + if (answ.Length > maxChar) + { + answ = answ.Substring(0, 30) +"[...]"+ answ.Substring(answ.Length - lastChar); + } + return answ; + } } } \ No newline at end of file diff --git a/ETS-WS/ETS-WS/bin/ETS-WS.dll b/ETS-WS/ETS-WS/bin/ETS-WS.dll index 96aa5d0..b9c53c6 100644 Binary files a/ETS-WS/ETS-WS/bin/ETS-WS.dll and b/ETS-WS/ETS-WS/bin/ETS-WS.dll differ diff --git a/ETS-WS/ETS-WS/bin/css/ETS.css b/ETS-WS/ETS-WS/bin/css/ETS.css index caed68c..0ef9018 100644 --- a/ETS-WS/ETS-WS/bin/css/ETS.css +++ b/ETS-WS/ETS-WS/bin/css/ETS.css @@ -4,3 +4,171 @@ 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; +} +.secColA-2 +{ + background-color: #24577B; +} +.secColA-3 +{ + background-color: #03406A; +} +.secColA-4 +{ + background-color: #3E94D1; +} +.secColA-5 +{ + background-color: #B8E1FD; +} +.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; +} + +.lightGray +{ + background-color: #EDEDED; +} + +/* 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 */ \ No newline at end of file