-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIsUniqueReport.aspx
40 lines (37 loc) · 2.35 KB
/
IsUniqueReport.aspx
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
36
37
38
39
40
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="IsUniqueReport.aspx.cs" Inherits="IsUniqueReport" %>
<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>
<%@ Register assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table align="center" dir="rtl" class="Table90P">
<tr>
<td align="right">
<asp:Label ID="Label1" runat="server" CssClass="BigLabel">لیست کارمندان نمونه مرکز شوراهای حل اختلاف</asp:Label>
</td>
<td>
<asp:ScriptManager ID="ScriptManagerInfo" runat="server">
</asp:ScriptManager>
</td>
<td align="left">
<asp:ImageButton ID="imgbHome" runat="server" Height="60px" ImageUrl="~/Images/Home2.png" Width="60px" OnClick="imgbHome_Click" />
<asp:ImageButton ID="imgbExit" runat="server" ImageUrl="~/Images/exit2.JPG" OnClick="imgbExit_Click" />
</td>
</tr>
<tr>
<td colspan="3">
<rsweb:ReportViewer ID="ReportViewerIsUnique" runat="server" CssClass="label" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="900px">
<LocalReport ReportPath="ReportIsUnique.rdlc">
<DataSources>
<rsweb:ReportDataSource DataSourceId="ObjectDataSourceIsUnique" Name="DataSetIsUnique" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
<asp:ObjectDataSource ID="ObjectDataSourceIsUnique" runat="server" SelectMethod="GetData" TypeName="KSHDBDataSetIsUniqueTableAdapters.PersonTableAdapter"></asp:ObjectDataSource>
</td>
</tr>
<tr>
<td colspan="3"> </td>
</tr>
</table>
</asp:Content>