47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DatiSeiAnd.aspx.cs" Inherits="Consulenza.Web.DatiSeiAnd" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
codiceAgente <asp:TextBox ID="codiceAgente" runat="server">002317</asp:TextBox>
|
|
codiceFiscale <asp:TextBox ID="codiceFiscale" runat="server">PRZRNZ44S14B025B</asp:TextBox>
|
|
codiceMandato <asp:TextBox ID="codiceMandato" runat="server"></asp:TextBox>
|
|
codiceRete <asp:TextBox ID="codiceRete" runat="server">F</asp:TextBox>
|
|
|
|
<asp:Button ID="Button1" runat="server" Text="SVIL" onclick="Button1_Click" />
|
|
|
|
<asp:Button ID="Button2" runat="server" Text="COLL" onclick="Button2_Click" />
|
|
|
|
<asp:Button ID="Button3" runat="server" Text="PROD" onclick="Button3_Click" />
|
|
|
|
<asp:Button ID="Button4" runat="server" Text="MOCK" onclick="Button4_Click" />
|
|
|
|
<asp:Button onClick="ClipBoard();">Copy to Clipboard</asp:Button>
|
|
<asp:TextBox ID="holdtext" STYLE="display:none;" runat="server"></asp:TextBox>
|
|
<asp:Panel ID="Panel1" Width="100%" Height="400px" ScrollBars="Vertical" runat="server">
|
|
<asp:Label ID="testo" runat="server" Text="Label"></asp:Label>
|
|
|
|
</asp:Panel>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/jscript" language="javascript">
|
|
function ClipBoard() {
|
|
Copied = document.getElementById("<%=holdtext.ClientID%>").createTextRange();
|
|
Copied.execCommand("Copy");
|
|
}
|
|
|
|
</script>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|
|
|