64313f3651
- Inserita pagina dummy x Help - Inseriti mod_selettore_ajax e mod_fixCal git-svn-id: https://keyhammer.ath.cx/svn/WebGIM/trunk@12 3e04ef4b-3b25-4b6c-be27-bb5389ca777b
137 lines
6.2 KiB
Plaintext
137 lines
6.2 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/AjaxSimple.master" AutoEventWireup="true"
|
|
CodeFile="adminDB.aspx.cs" Inherits="adminDB" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
|
|
<div style="text-align: center;">
|
|
<div style="text-align: center; width: 800px;">
|
|
<h2>
|
|
Amministrazione Database Applicazione</h2>
|
|
<p>
|
|
Di seguito sono riportate le opzioni attive per l'amministrazione del DB dell'applicazione
|
|
corrente</p>
|
|
|
|
<table style="text-align: left; background-color: White; border: solid 1px black;
|
|
width: 100%" cellpadding="5" cellspacing="0">
|
|
<tr style="background-color: #696969; color: White;">
|
|
<td>
|
|
<b>DB Produzione</b>
|
|
</td>
|
|
<td style="text-align:right;">
|
|
<asp:Label runat="server" ID="lblDbAppVers" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:Button ID="btnCreaDbProd" runat="server" Text="Crea DB Applicazione" Width="200px"
|
|
OnClick="btnCreaDbProd_Click" />
|
|
</td>
|
|
<td>
|
|
Crea DB di produzione dell'Applicazione
|
|
<br />
|
|
<i>(Crea da zero il DB dell'Applicazione)</i>
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #dedede;">
|
|
<td>
|
|
<asp:Button ID="btnUpdDbProd" runat="server" Text="Aggiorna Db Applicazione" Width="200px"
|
|
OnClick="btnUpdDbProd_Click" />
|
|
</td>
|
|
<td>
|
|
Aggiorna il DB di produzione per l'applicazione
|
|
<br />
|
|
<i>(solo se Db in produzione è più vecchio della versione richiesta)</i>
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #696969; color: White;">
|
|
<td colspan="2">
|
|
<b>DB Test</b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:Button ID="btnResetDbTest" runat="server" Text="Ricrea Db Test" Width="200px"
|
|
OnClick="btnResetDbTest_Click" />
|
|
</td>
|
|
<td>
|
|
Reimposta il DB di test
|
|
<br />
|
|
<i>(per verifica procedure creazione DB da zero alla versione corrente)</i>
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #dedede;">
|
|
<td>
|
|
<asp:Button ID="btnDoReqUpdDbTest" runat="server" Text="Esegui step richiesti"
|
|
Width="200px" onclick="btnDoReqUpdDbTest_Click"
|
|
/>
|
|
</td>
|
|
<td>
|
|
Aggiorna il DB di test per l'applicazione eseguendo gli step indicati
|
|
<br />
|
|
dalla versione <asp:TextBox runat="server" ID="txtStepFrom" Text="0" Width="2em" /> alla versione <asp:TextBox runat="server" ID="txtStepTo" Text="0" Width="2em" />
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #696969; color: White;">
|
|
<td>
|
|
<b>DB Vocabolario</b>
|
|
</td>
|
|
<td style="text-align:right;">
|
|
<asp:Label runat="server" ID="lblDbVocVers" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:Button ID="btnCreaVocab" runat="server" Text="Crea DB vocab" Width="200px" OnClick="btnCreaVocab_Click" />
|
|
</td>
|
|
<td>
|
|
Crea DB Vocabolario
|
|
<br />
|
|
<i>(Crea da zero il DB vocabolario)</i>
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #dedede;">
|
|
<td>
|
|
<asp:Button ID="btnUpdVocab" runat="server" Text="Update DB vocab" Width="200px"
|
|
OnClick="btnUpdVocab_Click" />
|
|
</td>
|
|
<td>
|
|
Aggiorna DB Vocabolario
|
|
<br />
|
|
<i>(Aggiorna all'ultima versione il DB vocabolario)</i>
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #696969; color: White;">
|
|
<td>
|
|
<b>DB Anagrafica</b>
|
|
</td>
|
|
<td style="text-align:right;">
|
|
<asp:Label runat="server" ID="lblDbAnaVers" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:Button ID="btnCreaAnag" runat="server" Text="Crea DB Anagrafica" Width="200px"
|
|
OnClick="btnCreaAnag_Click" />
|
|
</td>
|
|
<td>
|
|
Crea DB Anagrafica
|
|
<br />
|
|
<i>(Crea da zero il DB Anagrafica)</i>
|
|
</td>
|
|
</tr>
|
|
<tr style="background-color: #dedede;">
|
|
<td>
|
|
<asp:Button ID="btnUpdAnag" runat="server" Text="Update DB Anagrafica" Width="200px"
|
|
OnClick="btnUpdAnag_Click" />
|
|
</td>
|
|
<td>
|
|
Aggiorna DB Anagrafica
|
|
<br />
|
|
<i>(Aggiorna all'ultima versione il DB Anagrafica)</i>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<asp:Label runat="server" ID="lblResult" CssClass="erroreMid" />
|
|
</div>
|
|
</div>
|
|
</asp:Content>
|