first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
64
rus/admin/menu/convertLte.jsp
Normal file
64
rus/admin/menu/convertLte.jsp
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.sql.*" errorPage="" %>
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Documento senza titolo</title>
|
||||
</head>
|
||||
<jsp:useBean id="source" class="java.lang.String" type="java.lang.String" scope="request" >
|
||||
</jsp:useBean>
|
||||
<jsp:useBean id="result" class="java.lang.String" type="java.lang.String" scope="request" >
|
||||
</jsp:useBean>
|
||||
<body>
|
||||
<p>Convert LTE</p>
|
||||
<form action="ToolLte.abl" method="post" name="main" id="main"><input type="hidden" id="cmd" name="cmd">
|
||||
<p>
|
||||
<label for="source">Testo HTML della tabella da convertire:<br>
|
||||
</label>
|
||||
|
||||
<textarea name="source" cols="100" rows="8" id="source"><%=source%></textarea>
|
||||
<br>
|
||||
<a href="javascript:convertiRicerca()"> Converti Ricerca
|
||||
</a> </p>
|
||||
<p><a href="javascript:convertiDettaglio()">Converti Dettaglio </a> </p>
|
||||
<p><a href="javascript:convertiTabListe()">Converti Tabella risultato </a></p>
|
||||
<p>Risultato:</p>
|
||||
<p> ------</p>
|
||||
<pre>
|
||||
<xmp><%=result%></xmp>
|
||||
</pre>
|
||||
<p> ------</p>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
function convertiRicerca()
|
||||
{
|
||||
var f = document.main;
|
||||
|
||||
f.cmd.value="convertiTabRicerca";
|
||||
|
||||
f.submit();
|
||||
|
||||
}
|
||||
function convertiDettaglio()
|
||||
{
|
||||
var f = document.main;
|
||||
|
||||
f.cmd.value="convertiTabDettaglio";
|
||||
|
||||
f.submit();
|
||||
|
||||
}
|
||||
function convertiTabListe()
|
||||
{
|
||||
var f = document.main;
|
||||
|
||||
f.cmd.value="convertiTabListe";
|
||||
|
||||
f.submit();
|
||||
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue