Stimulsoft.Report.net报表简单实用
1 using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using Stimulsoft.Report;
using Stimulsoft.Report.Components;
using Stimulsoft.Report.Print;
using Stimulsoft.Report.Export;
using System.IO;
using System.Net.Mail;
using System.Text;
using System.Net; public class applicationStart
{
public static bool isshowlogo = false;
public static string orderid = "";
public static DataTable dthead;
public static DataTable dtmessage;
} public partial class StimulReport : System.Web.UI.Page
{
double left = , right = , top = , bottom = ; protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
try
{
string aa = Request.QueryString["printno"];
if (aa == null || aa == "")
throw new Exception();
applicationStart.orderid = aa;
}
catch
{
return;
}
try
{
applicationStart.isshowlogo = Convert.ToBoolean(Request.QueryString["isshowlogo"]); }
catch
{
}
GetSource();
}
ShowReport(applicationStart.isshowlogo);
} private void ShowReport(bool isshowlogo)
{
if (applicationStart.isshowlogo)
{
this.Button2.Text = "HideLogo";
}
else
{
this.Button2.Text = "ShowLogo";
} string filepath = Server.MapPath("~/Report_1.mrt");
StiReport stireport = new StiReport();
stireport.Load(filepath); stireport.RegData("datasource", applicationStart.dtmessage);
//设置报表内控件状态
StiFooterBand fb = stireport.Pages[].Components["FooterBand1"] as StiFooterBand;
StiText st = fb.Components["Text47"] as StiText;
st.Enabled = applicationStart.dthead.Rows[]["looksampletype"].ToString() == "" ? false : true; StiPageHeaderBand head = stireport.Pages[].Components["PageHeaderBand1"] as StiPageHeaderBand;
StiImage imglogo1 = head.Components["Image1"] as StiImage;
imglogo1.Enabled = applicationStart.isshowlogo; StiPageFooterBand footer = stireport.Pages[].Components["PageFooterBand1"] as StiPageFooterBand;
StiImage imglogo2 = footer.Components["Image2"] as StiImage;
imglogo2.Enabled = applicationStart.isshowlogo; //设置页边距
stireport.Pages[].Margins = new StiMargins(left, right, top, bottom); stireport.Compile();
//设置报表内的参数值
stireport["code"] = applicationStart.dthead.Rows[]["code"].ToString();
stireport["orderno"] = applicationStart.dthead.Rows[]["orderno"].ToString();
stireport["price"] = applicationStart.dthead.Rows[]["price"].ToString();
stireport["discountprice"] = applicationStart.dthead.Rows[]["discountprice"].ToString();
stireport["tobefinishstr"] = applicationStart.dthead.Rows[]["tobefinishstr"].ToString();
stireport["createdate"] = applicationStart.dthead.Rows[]["createdate"].ToString();
stireport["contact"] = applicationStart.dthead.Rows[]["contact"].ToString();
stireport["companyname"] = applicationStart.dthead.Rows[]["companyname"].ToString();
stireport["tel"] = applicationStart.dthead.Rows[]["tel"].ToString();
stireport["fax"] = applicationStart.dthead.Rows[]["fax"].ToString();
stireport["mobile"] = applicationStart.dthead.Rows[]["mobile"].ToString();
stireport["address"] = applicationStart.dthead.Rows[]["address"].ToString();
stireport["email"] = applicationStart.dthead.Rows[]["email"].ToString();
stireport["deliverytypeenname"] = applicationStart.dthead.Rows[]["deliverytypeenname"].ToString();
stireport["name"] = applicationStart.dthead.Rows[]["name"].ToString();
stireport["customermemo"] = applicationStart.dthead.Rows[]["customermemo"].ToString();
stireport["looksampletypestr"] = applicationStart.dthead.Rows[]["looksampletypestr"].ToString(); viewer1.Report = stireport;
} private void GetSource()
{
string headsql = "select orderno, tobefinishdate, so.price,so.discountprice, tobefinishstr,so.deliverydate,createdate ,so.contact,so.companyname,so.tel,so.fax,so.mobile,so.address,so.looksampletype, " +
"so.orderid, so.email,so.code, sales.username as salename ,openso.username as openname ,base_delivery_type.deliverytypeenname,base_delivery_type.shiptypename,user_position.positionname," + "name,so.discountoffflag,so.customermemo from so ,user as sales,user as openso ,base_delivery_type,user_position ,customer,customer_discount " +
"where so.userid=sales.userid and so.opuserid=openso.userid and base_delivery_type.deliverytypeid=so.deliverytypeid " +
"and so.positionid=user_position.positionid and customer.discountid=customer_discount.discountid " +
"and so.customerid=customer.customerid and so.orderid=" + applicationStart.orderid; string messagesql = "SELECT *from (" +
"select jobno,product.productname,enproductname,so_detail.printnum,sampleflag,socontent as jobcontent , printprice , " +
"sodetailid as sortno,so.customermemo as memo " +
"From so_detail ,so,product where so_detail.deleteflag=0 and so.orderid=so_detail.orderid and " +
"product.productid=so_detail.productid and so.orderid= " + applicationStart.orderid +
" union all " +
"select '' as jobno , 'Delivery' as productname ,'Delivery' as enproductname , ' ' as printnum ,' ' as sampleflag , '' as jobcontent ,price ," +
"'1' as sortno ,address as memo from so_delivery where orderid= " + applicationStart.orderid +
" union all " +
"select '' as jobno , 'PostProcess' as productname ,'PostProcess' as enproductname, outsidenum as printnum ,' ' as sampleflag , postprocessname, costamount " +
", so_detail.sodetailid as sortno ,concat(memo,memostr) as memo From so_detail_outside,so ,so_detail where so.orderid=so_detail.orderid and so_detail.deleteflag=0 " +
"and so_detail.sodetailid=so_detail_outside.sodetailid and so.orderid= " + applicationStart.orderid +
" union all " +
"select '' as jobno , 'OtherItem' as productname ,'OtherItem' as enproductname , ' ' as printnum ,' ' as sampleflag , pricenamecn, so_detail_price.price " +
", so_detail.sodetailid as sortno ,'' as memo From so_detail_price,so ,so_detail where so.orderid=so_detail.orderid and so_detail.deleteflag=0 " +
"and so_detail.sodetailid=so_detail_price.sodetailid and so.orderid= " + applicationStart.orderid +
" union all " +
"select '' as jobno , offername as productname ," +
"'Discountinfo' as enproductname , ' ' as printnum ,' ' as sampleflag , offer_so_history.offermemo as discountmemo, -offer_so_history.discountprice as price , " +
"'0' as sortno , offer_so_history.offername as memo From offer_so_history,so where so.orderid=offer_so_history.orderid and so.deleteflag=0 " +
"and so.orderid=" + applicationStart.orderid + " ) as itemlist order by sortno desc";
DataModule dm = DataModule.GetDataModule();
applicationStart.dthead = dm.QuerySql(headsql);
applicationStart.dtmessage = dm.QuerySql(messagesql);
DataTable dt = applicationStart.dtmessage; applicationStart.dthead.Columns.Add(new DataColumn("looksampletypestr", typeof(string)));
applicationStart.dthead.Columns.Add(new DataColumn("isshowdiscountprice", typeof(string)));
if (applicationStart.dthead.Rows.Count > )
{
if (applicationStart.dthead.Rows[][].ToString() == applicationStart.dthead.Rows[][].ToString())
{
applicationStart.dthead.Rows[]["isshowdiscountprice"] = ;//false
}
else
{
applicationStart.dthead.Rows[]["isshowdiscountprice"] = ;//true
}
} foreach (DataRow dr in applicationStart.dthead.Rows)
{
if (dr["looksampletype"].ToString() == "")
{
dr["looksampletypestr"] = "不打稿";
}
else if (dr["looksampletype"].ToString() == "")
{
dr["looksampletypestr"] = "打稿";
}
else
{
dr["looksampletypestr"] = "";
}
}
} protected void Button1_Click(object sender, EventArgs e)
{
SendEmail(this.DropDownList1.SelectedValue, this.viewer1.Report, "aaa@163.com", this.TextBox1.Text, "Report[" + this.DropDownList1.SelectedValue + "]" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), "", "smtp.163.com", , "aaa@163.com", "");
} private void GetFormat(string filetype, ref StiExportFormat sf, ref string filename)
{
switch (filetype)
{
case "pdf": sf = StiExportFormat.Pdf; filename = "report.pdf"; break;
case "jpeg": sf = StiExportFormat.ImageJpeg; filename = "report.jpeg"; break;
case "gif": sf = StiExportFormat.ImageGif; filename = "report.gif"; break;
case "excel": sf = StiExportFormat.Excel; filename = "report.xls"; break;
case "word2007": sf = StiExportFormat.Word2007; filename = "report.docx"; break;
}
} public void SendEmail(string filetype, StiReport report, string fromaddress, string toaddress, string subject, string messageBody, string host, int port, string username, string password)
{
using (MemoryStream ms = new MemoryStream())
{
string filename = "";
StiExportFormat sef = StiExportFormat.Pdf;
GetFormat(filetype, ref sef, ref filename);
report.ExportDocument(sef, ms);
ms.Seek(, SeekOrigin.Begin); //使用自己的邮件发送机制
System.Net.Mail.Attachment attachment = new System.Net.Mail.Attachment(ms, filename); MailMessage item = new MailMessage(fromaddress, toaddress);
item.Subject = subject;
item.Body = messageBody;
item.Attachments.Add(attachment); SmtpClient smtp = new SmtpClient(host, port);
smtp.UseDefaultCredentials = false;
smtp.Credentials = new System.Net.NetworkCredential(username, password);
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Send(item);
ms.Close();
}
ClientScript.RegisterStartupScript(GetType(), "", "<script>showmessage();</script>");
}
protected void Button2_Click(object sender, EventArgs e)
{
applicationStart.isshowlogo = !applicationStart.isshowlogo;
ShowReport(applicationStart.isshowlogo);
}
}
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="StimulReport.aspx.cs" Inherits="StimulReport" %> <%@ Register Assembly="Stimulsoft.Report.Web, Version=2013.3.1800.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a"
Namespace="Stimulsoft.Report.Web" TagPrefix="cc1" %>
<!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>
<style type="text/css">
.style1
{
width: 498px;
}
</style>
<script language="javascript" type="text/javascript">
function showmessage() {
document.getElementById("divmessage").style.display = "block";
setTimeout("document.getElementById('divmessage').style.display ='none';", 2000);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<table style="width: 100%">
<tr>
<td class="style1">
<asp:Button ID="Button2" runat="server" onclick="Button2_Click"
Text="ShowLogo" />
Email:<asp:TextBox ID="TextBox1" runat="server">huang_198906@163.com</asp:TextBox>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Selected="True">pdf</asp:ListItem>
<asp:ListItem>jpeg</asp:ListItem>
<asp:ListItem>gif</asp:ListItem>
<asp:ListItem>excel</asp:ListItem>
<asp:ListItem>word2007</asp:ListItem>
</asp:DropDownList>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Send Email" />
</td>
<td>
<div id="divmessage" style="width: 69px; background-color: #BDB8FA; display: none">
發送成功
</div>
</td>
</tr>
</table>
<cc1:StiWebViewer ID="viewer1" runat="server" ShowBookmarksButton="False" ShowParametersButton="False" />
<cc1:StiWebReport ID="report1" runat="server" />
</form>
</body>
</html>
Stimulsoft.Report.net报表简单实用的更多相关文章
- stimulsoft report工具—— 简单的多表连接打印报表例子
一.用报表工具打印多个表格信息(包括学生表.教师表.班级表) 1.准备打印的数据(用sqlserver) 1)班级表
- stimulsoft Report报表使用笔记
1.使用设计器设计mrt报表模板,或者从其他文件复制修改 2.删除business object 数据源 3.使用代码添加数据源 ParcelChangeItem change = new Parce ...
- Stimulsoft.Report.web viewer控件添加按钮
当你购买了带源码的时候,你可以对源码进行修改以达到自己想要的效果,比较这里讲到的,向viewer控件工具栏添加按钮. 通过源码目录可以看出我们需要修改的有两部分代码 红色方块圈中的部分,[StiWeb ...
- Visual Studio 2010 RDLC 报表简单使用
原文:Visual Studio 2010 RDLC 报表简单使用 RDLC(Report Definition Language Client-side Processing)是Visual Stu ...
- jQuery + Stimulsoft.Report 选择gridview多行打印
jQuery + Stimulsoft.Report 报表空间打印多个ID split函数,多行ID 1. 获取选择多行ID(前台) //按钮-打印 function PrinterWorkQuali ...
- jQuery的几种简单实用效果
许久未分享博客,或许已生疏. 闲来无事, 分享几个jQuery简单实用的效果案例 不喜勿喷... 1.页面常用的返回顶部 <!DOCTYPE html> <html lang=&qu ...
- PowerDesigner导出Report通用报表
PowerDesigner导出Report通用报表 通用模板下载地址:http://pan.baidu.com/s/1c0NDphm
- 经验分享:10个简单实用的 jQuery 代码片段
尽管各种 JavaScirpt 框架和库层出不穷,jQuery 仍然是 Web 前端开发中最常用的工具库.今天,向大家分享我觉得在网站开发中10个简单实用的 jQuery 代码片段. 您可能感兴趣的相 ...
- 简单实用的PHP防注入类实例
这篇文章主要介绍了简单实用的PHP防注入类实例,以两个简单的防注入类为例介绍了PHP防注入的原理与技巧,对网站安全建设来说非常具有实用价值,需要的朋友可以参考下 本文实例讲述了简单实用的PHP防注 ...
随机推荐
- PostgreSQL 9.3 Streaming Replication 状态监控
postgresql是使用Streaming Replication来实现热备份的,热备份的作用如下: 灾难恢复 高可用性 负载均衡,当你使用Streaming Replication来实现热备份(h ...
- oracle_常用命令(表空间查询)
---查询表空间 对应的物理文件,名称 ,大小 ,已用的,利用率 SELECT B.FILE_NAME "FILE_NAME", B.TABLESPACE_NAME "T ...
- linux_常用压缩,解压缩命令
01-.tar格式解包:[*******]$ tar xvf FileName.tar打包:[*******]$ tar cvf FileName.tar DirName(注:tar是打包,不是压缩! ...
- 如何利用百度音乐播放器的API接口来获取高音质歌曲
第一步:在网页中打开以下网址: http://box.zhangmen.baidu.com/x?op=12&count=1&title=时间都去哪儿了$$王铮亮$$$$ 其中红色地方可 ...
- Linux 时区变化
1.查看当前的时区 date -R 2.改动当前时区 tzselect 之后会出来一个选项菜单,选择你想要的时区就OK了 3.替换系统时区文件 cp /usr/share/zoneinfo/XXX/Y ...
- c# 官方命名规则
官方的哦. https://msdn.microsoft.com/zh-cn/library/vstudio/ff926074(v=vs.110).aspx
- SSAS系列——【07】多维数据(查询Cube)
原文:SSAS系列——[07]多维数据(查询Cube) 1.什么是MDX? MDX叫做"多维表达式",是一种查询语言,是一种和SQL类似的查询语言,它基于 XML for Anal ...
- css3实现色子自动翻转效果
原文:css3实现色子自动翻转效果 css3使我们能够跳出2d空间,实现3维空间的动画效果,这里给出一个自动翻转的3d色子动画效果制作过程. 第一步,首先进行HTML的布局,对于3D效果,布局有一定的 ...
- NetMQ
NetMQ发布订阅C#示例 NetMQ (ZeroMQ to .Net),ØMQ号称史上最快中间件.它对socket通信进行了封装,使得我们不需要写socket函数调用就能完成复杂的网络通信.和一般意 ...
- 转载JQuery绑定鼠标粘贴事件工具类
// 粘贴事件监控 $.fn.pasteEvents = function( delay ) { if (delay == undefined) delay = 10; return $(this). ...