-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathReportEmployeeDetails.aspx
29 lines (25 loc) · 1.46 KB
/
ReportEmployeeDetails.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MainMasterAR.master" AutoEventWireup="true" CodeFile="ReportEmployeeDetails.aspx.cs" Inherits="ReportEmployeeDetails" %>
<%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div class="container" dir="rtl">
<div class="ui blue inverted segment center aligned " style="width: 100%">
<h1> عرض تقرير بيانات العميل</h1>
</div>
<div class="three fields ui raised segment form">
<div class="field">
</div>
<div class="field">
<div class="ui two column grid">
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" />
<CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
<Report FileName="RepEmployeeDetails"></Report>
</CR:CrystalReportSource>
</div>
</div>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>