-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportViewer4.aspx
More file actions
35 lines (30 loc) · 1.31 KB
/
ReportViewer4.aspx
File metadata and controls
35 lines (30 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ReportViewer4.aspx.cs" Inherits="ContabSysNet_Web.ReportViewer4" %>
<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>ContabSysNet - Reportes</title>
<style>
html,body,form,#div1 {
height: 100%;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="div1">
<asp:ScriptManager runat="server"></asp:ScriptManager>
<%-- usamos una tabla (y no un div) pues no se muestra si no tiene contenido --%>
<table>
<tr>
<td id="ErrMessage_Cell" runat="server" class="generalfont errmessage errmessage_background">
</td>
</tr>
</table>
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Width="100%" Height="100%">
</rsweb:ReportViewer>
</div>
</form>
</body>
</html>