web应用程序传递连接字符串给FastReport数据源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web应用程序传递连接字符串给FastReport数据源相关的知识,希望对你有一定的参考价值。
public static FastReport.Report fr = new FastReport.Report();
public static FastReport.EnvironmentSettings es = new EnvironmentSettings();
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string path = Server.MapPath(@"\fr\Demo\1.frx");
if (System.IO.File.Exists(path) == true)
{
fr.Load(path);
es.DesignerSettings.ApplicationConnection = new System.Data.SqlClient.SqlConnection(); es.DesignerSettings.ApplicationConnection.ConnectionString = System.Configuration.ConfigurationManager.AppSettings["DataConn"].ToString(); //设置语言
FastReport.Utils.Res.LocaleFolder = Server.MapPath(@"\Localization");
FastReport.Utils.Res.LoadLocale(FastReport.Utils.Res.LocaleFolder + @"\Chinese (Simplified).frl");
fr.Design();
//fr.Show(); } }
以上是关于web应用程序传递连接字符串给FastReport数据源的主要内容,如果未能解决你的问题,请参考以下文章
如何在 EF6 中将连接字符串传递给 DataContext
winform怎么给fastreport的数据源的表里面自定义的参数赋值?比如select * from 表 where id=@id