First commit
This commit is contained in:
parent
cf97b64877
commit
cc69770608
1468 changed files with 265316 additions and 128 deletions
85
www/admin/menu/convertLte.jsp
Normal file
85
www/admin/menu/convertLte.jsp
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
<!DOCTYPE html>
|
||||
<!-- convertLte.jsp V.jsp V.jsp 05-10-2021 -->
|
||||
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.sql.*" errorPage="" %>
|
||||
<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>
|
||||
<label for="baseLink">Base Link:</label>
|
||||
<input name="baseLink" type="text" id="baseLink" value="https://cda.chiantibanca.it">
|
||||
</p>
|
||||
<p>
|
||||
<label for="baseLink">Testo da cercare:</label>
|
||||
<input name="text2search" type="text" id="baseLink" value="/VDR/goToDownloadFile/">
|
||||
</p>
|
||||
<p>
|
||||
<label for="baseLink">Text Limit:</label>
|
||||
<input name="textLimit" type="text" id="baseLink" value="'">
|
||||
</p>
|
||||
<p><a href="javascript:getLinkFromHtml()">estrai link da html</a></p>
|
||||
<p>Risultato:</p>
|
||||
<p> ------</p>
|
||||
<%=result%>
|
||||
<pre>
|
||||
<textarea name="xx" cols="100" rows="8" id="xx"><%=result%></textarea>
|
||||
</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();
|
||||
|
||||
}
|
||||
function getLinkFromHtml()
|
||||
{
|
||||
var f = document.main;
|
||||
|
||||
f.cmd.value="getLinkFromHtml";
|
||||
|
||||
f.submit();
|
||||
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue