diff --git a/CompanyRegistration/About.aspx b/CompanyRegistration/About.aspx deleted file mode 100644 index b70de37..0000000 --- a/CompanyRegistration/About.aspx +++ /dev/null @@ -1,7 +0,0 @@ -<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="CompanyRegistration.About" %> - - -

<%: Title %>.

-

Your application description page.

-

Use this area to provide additional information.

-
diff --git a/CompanyRegistration/BuyProduct.aspx b/CompanyRegistration/BuyProduct.aspx new file mode 100644 index 0000000..3a6162a --- /dev/null +++ b/CompanyRegistration/BuyProduct.aspx @@ -0,0 +1,4 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="BuyProduct.aspx.cs" Inherits="CompanyRegistration.BuyProduct" %> + + Conferma i dati aziendali e seleziona il pacchetti tra quelli disponibili + diff --git a/CompanyRegistration/BuyProduct.aspx.cs b/CompanyRegistration/BuyProduct.aspx.cs new file mode 100644 index 0000000..d387f73 --- /dev/null +++ b/CompanyRegistration/BuyProduct.aspx.cs @@ -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 CompanyRegistration +{ + public partial class BuyProduct : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/CompanyRegistration/BuyProduct.aspx.designer.cs b/CompanyRegistration/BuyProduct.aspx.designer.cs new file mode 100644 index 0000000..c829236 --- /dev/null +++ b/CompanyRegistration/BuyProduct.aspx.designer.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace CompanyRegistration +{ + + + public partial class BuyProduct + { + } +} diff --git a/CompanyRegistration/CompanyRegistration.csproj b/CompanyRegistration/CompanyRegistration.csproj index a606fb0..c68903b 100644 --- a/CompanyRegistration/CompanyRegistration.csproj +++ b/CompanyRegistration/CompanyRegistration.csproj @@ -198,8 +198,8 @@ - + @@ -235,6 +235,8 @@ + + @@ -341,6 +343,7 @@ + @@ -348,14 +351,14 @@ - - About.aspx + + + BuyProduct.aspx ASPXCodeBehind - - About.aspx + + BuyProduct.aspx - Contact.aspx ASPXCodeBehind @@ -373,6 +376,20 @@ Global.asax + + Login.aspx + ASPXCodeBehind + + + Login.aspx + + + MyArea.aspx + ASPXCodeBehind + + + MyArea.aspx + Site.Master @@ -388,6 +405,13 @@ SiteContent.master + + StartDemo.aspx + ASPXCodeBehind + + + StartDemo.aspx + tpl_footer.ascx ASPXCodeBehind diff --git a/CompanyRegistration/Content/Site.css b/CompanyRegistration/Content/Site.css index e1450b2..3f3d6d2 100644 --- a/CompanyRegistration/Content/Site.css +++ b/CompanyRegistration/Content/Site.css @@ -1,19 +1,23 @@ /* Move down content because we have a fixed navbar that is 50px tall */ body { - padding-top: 50px; - padding-bottom: 20px; + font-family: 'Roboto Condensed', sans-serif; + /*font-family: 'Open Sans Condensed', sans-serif;*/ + /*padding-top: 50px;*/ + /*padding-bottom: 20px;*/ } /* Wrapping element */ /* Set some basic padding to keep content from hitting the edges */ .body-content { - padding-left: 15px; - padding-right: 15px; + /*padding-left: 15px; + padding-right: 15px;*/ } -/* Set widths on the form inputs since otherwise they're 100% wide */ -input, -select, -textarea { - max-width: 280px; +.textCondens { + /*font-family: 'Roboto Condensed', sans-serif;*/ + font-family: 'Open Sans Condensed', sans-serif; +} +.textNormal { + font-family: 'Roboto', sans-serif; + /*font-family: 'Open Sans', sans-serif;*/ } /* Responsive: Portrait tablets and up */ @media screen and (min-width: 768px) { @@ -23,4 +27,197 @@ textarea { .body-content { padding: 0; } + body { + font-family: 'Roboto', sans-serif; + } +} +@media (max-width: 992px) { + .container { + width: 100%; + } +} +.border-thick { + border-width: 3px !important; +} +/* Animazione per richiamo attenzione*/ +.flashColor { + border: 3px solid blue; + /* Safari 4.0 - 8.0 */ + -webkit-animation-name: blueFlash; + -webkit-animation-duration: 0.5s; + -webkit-animation-timing-function: linear; + -webkit-animation-delay: 0s; + -webkit-animation-iteration-count: infinite; + -webkit-animation-direction: alternate; + /* Standard syntax */ + animation-name: blueFlash; + animation-duration: 0.5s; + animation-timing-function: linear; + animation-delay: 0s; + animation-iteration-count: infinite; + animation-direction: alternate; +} +/* Safari 4.0 - 8.0 */ +@-webkit-keyframes blueFlash { + 0% { + border-color: #c4dbff; + } + 25% { + border-color: #9dc4ff; + } + 50% { + border-color: #5ca5ff; + } + 75% { + border-color: #1b82ff; + } + 100% { + border-color: #005ccc; + } +} +.bigText { + font-size: 1.3em; +} +.smallText { + font-size: 0.8em; +} +/* Override the default bootstrap behavior where horizontal description lists + will truncate terms that are too long to fit in the left column +*/ +.dl-horizontal dt { + white-space: normal; +} +.deleted { + text-decoration: line-through; +} +.padZL { + padding-left: 0.2em; +} +.padZR { + padding-right: 0.2em; +} +.padZRL { + padding-left: 0.2em; + padding-right: 0.2em; +} +.colAlt { + color: #C93; +} +.fontBig { + font-size: 2em; +} +.tNote { + color: #8a8a8a; + font-style: italic; +} +.tNoWrap { + white-space: nowrap; +} +.navbar { + min-height: 0; + /*z-index: 0; // commentare quando in prod?!?*/ + color: #696969; +} +.pagination { + margin: 5px 0; +} +.pageSelDD { + width: 6em; +} +.zeroWidth { + width: 0; +} +/*------------------------------------------------------------------ +[ Shortcuts / .shortcuts ] +*/ +.shortcuts { + text-align: center; +} +.shortcuts .shortcut { + min-width: 9rem; + min-height: 5rem; + display: inline-block; + padding: 0.66666667rem 0; + margin: 0 2px 1em; + vertical-align: top; + text-decoration: none; + background: #F3F3F3; + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%); + background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%); + background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0); + border: 1px solid #ddd; + box-sizing: border-box; + border-radius: 0.5rem; +} +.shortcuts .shortcut-sm { + min-width: 4.5rem; + min-height: 3rem; + display: inline-block; + padding: 0.25rem 0; + margin: 0 2px 1em; + vertical-align: top; + text-decoration: none; + background: #F3F3F3; + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%); + background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%); + background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0); + border: 1px solid #ddd; + box-sizing: border-box; + border-radius: 0.5rem; +} +.shortcuts .shortcut .shortcut-icon { + width: 100%; + margin-top: 0; + margin-bottom: 0; + font-size: 2rem; + color: #333; +} +.shortcuts .shortcut-sm .shortcut-icon { + width: 100%; + margin-top: 0; + margin-bottom: 0; + font-size: 2rem; + color: #333; +} +.shortcuts .shortcut:hover { + background: #E8E8E8; + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fafafa), to(#e1e1e1)); + background-image: -webkit-linear-gradient(top, #fafafa, 0%, #e1e1e1, 100%); + background-image: -moz-linear-gradient(top, #fafafa 0%, #e1e1e1 100%); + background-image: linear-gradient(to bottom, #fafafa 0%, #e1e1e1 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffe1e1e1', GradientType=0); +} +.shortcuts .shortcut-sm:hover { + background: #E8E8E8; + background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fafafa), to(#e1e1e1)); + background-image: -webkit-linear-gradient(top, #fafafa, 0%, #e1e1e1, 100%); + background-image: -moz-linear-gradient(top, #fafafa 0%, #e1e1e1 100%); + background-image: linear-gradient(to bottom, #fafafa 0%, #e1e1e1 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffe1e1e1', GradientType=0); +} +.shortcuts .shortcut:active { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.shortcuts .shortcut-sm:active { + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.shortcuts .shortcut:hover .shortcut-icon { + color: #C93; +} +.shortcuts .shortcut-sm:hover .shortcut-icon { + color: #666; +} +.shortcuts .shortcut-label { + display: block; + margin-top: 0.75em; + font-weight: 400; + color: #666; } \ No newline at end of file diff --git a/CompanyRegistration/Content/Site.less b/CompanyRegistration/Content/Site.less index b9aecec..6f5e003 100644 --- a/CompanyRegistration/Content/Site.less +++ b/CompanyRegistration/Content/Site.less @@ -2,15 +2,15 @@ body { font-family: 'Roboto Condensed', sans-serif; /*font-family: 'Open Sans Condensed', sans-serif;*/ - padding-top: 50px; - padding-bottom: 20px; + /*padding-top: 50px;*/ + /*padding-bottom: 20px;*/ } /* Wrapping element */ /* Set some basic padding to keep content from hitting the edges */ .body-content { - padding-left: 15px; - padding-right: 15px; + /*padding-left: 15px; + padding-right: 15px;*/ } diff --git a/CompanyRegistration/Content/Site.min.css b/CompanyRegistration/Content/Site.min.css index 7ac06e6..55bd859 100644 --- a/CompanyRegistration/Content/Site.min.css +++ b/CompanyRegistration/Content/Site.min.css @@ -1 +1 @@ -body{font-family:'Roboto Condensed',sans-serif;padding-top:50px;padding-bottom:20px;}.body-content{padding-left:15px;padding-right:15px;}.textCondens{font-family:'Open Sans Condensed',sans-serif;}.textNormal{font-family:'Roboto',sans-serif;}@media screen and (min-width:768px){.jumbotron{margin-top:20px;}.body-content{padding:0;}body{font-family:'Roboto',sans-serif;}}@media(max-width:992px){.container{width:100%;}}.border-thick{border-width:3px !important;}.flashColor{border:3px solid #00f;-webkit-animation-name:blueFlash;-webkit-animation-duration:.5s;-webkit-animation-timing-function:linear;-webkit-animation-delay:0s;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-name:blueFlash;animation-duration:.5s;animation-timing-function:linear;animation-delay:0s;animation-iteration-count:infinite;animation-direction:alternate;}@-webkit-keyframes blueFlash{0%{border-color:#c4dbff;}25%{border-color:#9dc4ff;}50%{border-color:#5ca5ff;}75%{border-color:#1b82ff;}100%{border-color:#005ccc;}}.bigText{font-size:1.3em;}.smallText{font-size:.8em;}.dl-horizontal dt{white-space:normal;}.deleted{text-decoration:line-through;}.padZL{padding-left:.2em;}.padZR{padding-right:.2em;}.padZRL{padding-left:.2em;padding-right:.2em;}.colAlt{color:#c93;}.fontBig{font-size:2em;}.tNote{color:#8a8a8a;font-style:italic;}.tNoWrap{white-space:nowrap;}.navbar{min-height:0;color:#696969;}.pagination{margin:5px 0;}.pageSelDD{width:6em;}.zeroWidth{width:0;}.shortcuts{text-align:center;}.shortcuts .shortcut{min-width:9rem;min-height:5rem;display:inline-block;padding:.66666667rem 0;margin:0 2px 1em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.5rem;}.shortcuts .shortcut-sm{min-width:4.5rem;min-height:3rem;display:inline-block;padding:.25rem 0;margin:0 2px 1em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.5rem;}.shortcuts .shortcut .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:2rem;color:#333;}.shortcuts .shortcut-sm .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:2rem;color:#333;}.shortcuts .shortcut:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);}.shortcuts .shortcut-sm:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);}.shortcuts .shortcut:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut-sm:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut:hover .shortcut-icon{color:#c93;}.shortcuts .shortcut-sm:hover .shortcut-icon{color:#666;}.shortcuts .shortcut-label{display:block;margin-top:.75em;font-weight:400;color:#666;} \ No newline at end of file +body{font-family:'Roboto Condensed',sans-serif;}.textCondens{font-family:'Open Sans Condensed',sans-serif;}.textNormal{font-family:'Roboto',sans-serif;}@media screen and (min-width:768px){.jumbotron{margin-top:20px;}.body-content{padding:0;}body{font-family:'Roboto',sans-serif;}}@media(max-width:992px){.container{width:100%;}}.border-thick{border-width:3px !important;}.flashColor{border:3px solid #00f;-webkit-animation-name:blueFlash;-webkit-animation-duration:.5s;-webkit-animation-timing-function:linear;-webkit-animation-delay:0s;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:alternate;animation-name:blueFlash;animation-duration:.5s;animation-timing-function:linear;animation-delay:0s;animation-iteration-count:infinite;animation-direction:alternate;}@-webkit-keyframes blueFlash{0%{border-color:#c4dbff;}25%{border-color:#9dc4ff;}50%{border-color:#5ca5ff;}75%{border-color:#1b82ff;}100%{border-color:#005ccc;}}.bigText{font-size:1.3em;}.smallText{font-size:.8em;}.dl-horizontal dt{white-space:normal;}.deleted{text-decoration:line-through;}.padZL{padding-left:.2em;}.padZR{padding-right:.2em;}.padZRL{padding-left:.2em;padding-right:.2em;}.colAlt{color:#c93;}.fontBig{font-size:2em;}.tNote{color:#8a8a8a;font-style:italic;}.tNoWrap{white-space:nowrap;}.navbar{min-height:0;color:#696969;}.pagination{margin:5px 0;}.pageSelDD{width:6em;}.zeroWidth{width:0;}.shortcuts{text-align:center;}.shortcuts .shortcut{min-width:9rem;min-height:5rem;display:inline-block;padding:.66666667rem 0;margin:0 2px 1em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.5rem;}.shortcuts .shortcut-sm{min-width:4.5rem;min-height:3rem;display:inline-block;padding:.25rem 0;margin:0 2px 1em;vertical-align:top;text-decoration:none;background:#f3f3f3;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fff),to(#eee));background-image:-webkit-linear-gradient(top,#fff,0%,#eee,100%);background-image:-moz-linear-gradient(top,#fff 0%,#eee 100%);background-image:linear-gradient(to bottom,#fff 0%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffeeeeee',GradientType=0);border:1px solid #ddd;box-sizing:border-box;border-radius:.5rem;}.shortcuts .shortcut .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:2rem;color:#333;}.shortcuts .shortcut-sm .shortcut-icon{width:100%;margin-top:0;margin-bottom:0;font-size:2rem;color:#333;}.shortcuts .shortcut:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);}.shortcuts .shortcut-sm:hover{background:#e8e8e8;background-image:-webkit-gradient(linear,left 0%,left 100%,from(#fafafa),to(#e1e1e1));background-image:-webkit-linear-gradient(top,#fafafa,0%,#e1e1e1,100%);background-image:-moz-linear-gradient(top,#fafafa 0%,#e1e1e1 100%);background-image:linear-gradient(to bottom,#fafafa 0%,#e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa',endColorstr='#ffe1e1e1',GradientType=0);}.shortcuts .shortcut:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut-sm:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125);}.shortcuts .shortcut:hover .shortcut-icon{color:#c93;}.shortcuts .shortcut-sm:hover .shortcut-icon{color:#666;}.shortcuts .shortcut-label{display:block;margin-top:.75em;font-weight:400;color:#666;} \ No newline at end of file diff --git a/CompanyRegistration/Default.aspx b/CompanyRegistration/Default.aspx index 586042d..248a3be 100644 --- a/CompanyRegistration/Default.aspx +++ b/CompanyRegistration/Default.aspx @@ -3,38 +3,37 @@
-

ASP.NET

-

ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.

-

Learn more »

+

SmartCheckIn Registration

+

Qui puoi acquistare o gestire la soluzione per al gestione degli accessi in azienda conforme con le più recenti normative di sicurezza

+

Maggiori Informazioni »

-

Getting started

+

Attiva la tua Demo

- ASP.NET Web Forms lets you build dynamic websites using a familiar drag-and-drop, event-driven model. - A design surface and hundreds of controls and components let you rapidly build sophisticated, powerful UI-driven sites with data access. + Attiva la tua demo per provare i nostri servizi per 60gg e fino a 10 utenti.

- Learn more » + Start Demo »

-

Get more libraries

+

Acquista il tuo servizio

- NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects. + Se vuoi attivare il tuo servizio puoi scegleire tra 3 differenti livelli di prestazioni secondo le esigenze della tua azienda.

- Learn more » + Buy Product »

-

Web Hosting

+

Accedi al tuo cruscotto

- You can easily find a web hosting company that offers the right mix of features and price for your applications. + Se la tua azienda ha acquistato i nostri servizi, clicca qui per accedere al pannello di gestione dedicato.

- Learn more » + Login »

diff --git a/CompanyRegistration/Login.aspx b/CompanyRegistration/Login.aspx new file mode 100644 index 0000000..e3f82e9 --- /dev/null +++ b/CompanyRegistration/Login.aspx @@ -0,0 +1,14 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="CompanyRegistration.Login" %> + +

Login

+
+
+ Registrati +
+
+
+
+ Accedi +
+
+
diff --git a/CompanyRegistration/About.aspx.cs b/CompanyRegistration/Login.aspx.cs similarity index 83% rename from CompanyRegistration/About.aspx.cs rename to CompanyRegistration/Login.aspx.cs index 2fd24bc..59e8d67 100644 --- a/CompanyRegistration/About.aspx.cs +++ b/CompanyRegistration/Login.aspx.cs @@ -7,7 +7,7 @@ using System.Web.UI.WebControls; namespace CompanyRegistration { - public partial class About : Page + public partial class Login : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { diff --git a/CompanyRegistration/About.aspx.designer.cs b/CompanyRegistration/Login.aspx.designer.cs similarity index 93% rename from CompanyRegistration/About.aspx.designer.cs rename to CompanyRegistration/Login.aspx.designer.cs index bc0c249..e90ec12 100644 --- a/CompanyRegistration/About.aspx.designer.cs +++ b/CompanyRegistration/Login.aspx.designer.cs @@ -11,7 +11,7 @@ namespace CompanyRegistration { - public partial class About + public partial class Login { } } diff --git a/CompanyRegistration/MyArea.aspx b/CompanyRegistration/MyArea.aspx new file mode 100644 index 0000000..8406064 --- /dev/null +++ b/CompanyRegistration/MyArea.aspx @@ -0,0 +1,5 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="MyArea.aspx.cs" Inherits="CompanyRegistration.MyArea" %> + + + area tutente + diff --git a/CompanyRegistration/MyArea.aspx.cs b/CompanyRegistration/MyArea.aspx.cs new file mode 100644 index 0000000..27888d2 --- /dev/null +++ b/CompanyRegistration/MyArea.aspx.cs @@ -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 CompanyRegistration +{ + public partial class MyArea : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/CompanyRegistration/MyArea.aspx.designer.cs b/CompanyRegistration/MyArea.aspx.designer.cs new file mode 100644 index 0000000..4ea7c03 --- /dev/null +++ b/CompanyRegistration/MyArea.aspx.designer.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace CompanyRegistration +{ + + + public partial class MyArea + { + } +} diff --git a/CompanyRegistration/Site.Master b/CompanyRegistration/Site.Master index 052b924..7eee0e1 100644 --- a/CompanyRegistration/Site.Master +++ b/CompanyRegistration/Site.Master @@ -55,8 +55,8 @@
-
+ diff --git a/CompanyRegistration/Site.Master.cs b/CompanyRegistration/Site.Master.cs index b7b5277..af6e649 100644 --- a/CompanyRegistration/Site.Master.cs +++ b/CompanyRegistration/Site.Master.cs @@ -1,4 +1,5 @@ -using System; +using SteamWare; +using System; using System.Collections.Generic; using System.Linq; using System.Web; @@ -11,6 +12,10 @@ namespace CompanyRegistration { protected void Page_Load(object sender, EventArgs e) { + if(!Page.IsPostBack) + { + showSearch = memLayer.ML.CRB("showSearch"); + } tpl_footer.eh_doRefresh += Cmp_footer_eh_doRefresh; } diff --git a/CompanyRegistration/StartDemo.aspx b/CompanyRegistration/StartDemo.aspx new file mode 100644 index 0000000..8beb1fc --- /dev/null +++ b/CompanyRegistration/StartDemo.aspx @@ -0,0 +1,4 @@ +<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="StartDemo.aspx.cs" Inherits="CompanyRegistration.StartDemo" %> + + Conferma i dati aziendali per attivare la Demo + diff --git a/CompanyRegistration/StartDemo.aspx.cs b/CompanyRegistration/StartDemo.aspx.cs new file mode 100644 index 0000000..6b36519 --- /dev/null +++ b/CompanyRegistration/StartDemo.aspx.cs @@ -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 CompanyRegistration +{ + public partial class StartDemo : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/CompanyRegistration/StartDemo.aspx.designer.cs b/CompanyRegistration/StartDemo.aspx.designer.cs new file mode 100644 index 0000000..bb10a81 --- /dev/null +++ b/CompanyRegistration/StartDemo.aspx.designer.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace CompanyRegistration +{ + + + public partial class StartDemo + { + } +} diff --git a/CompanyRegistration/Web.config b/CompanyRegistration/Web.config index de24414..94535e7 100644 --- a/CompanyRegistration/Web.config +++ b/CompanyRegistration/Web.config @@ -4,82 +4,86 @@ https://go.microsoft.com/fwlink/?LinkId=169433 --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CompanyRegistration/WebUserControls/tpl_footer.ascx b/CompanyRegistration/WebUserControls/tpl_footer.ascx index 627d740..23690d9 100644 --- a/CompanyRegistration/WebUserControls/tpl_footer.ascx +++ b/CompanyRegistration/WebUserControls/tpl_footer.ascx @@ -1,6 +1,6 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="tpl_footer.ascx.cs" Inherits="CompanyRegistration.WebUserControls.tpl_footer" %> -