23 lines
971 B
Plaintext
23 lines
971 B
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="C2P_Report._Default" %>
|
|
|
|
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
|
|
<!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">
|
|
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
|
|
<div style="background-color: gray;">
|
|
<h1>PDF direct print</h1>
|
|
print x generare report...<br />
|
|
<asp:Label runat="server" ID="lblOut" />
|
|
<asp:Button runat="server" ID="btnReport" Text="PDF" OnClick="btnReport_Click" />
|
|
</div>
|
|
|
|
</form>
|
|
</body>
|
|
</html>
|