it is the first time i use a web application so i am poor of knowledge about that ,i am trying to show on the Web my report but when i compile the project i receive this Error Message : Error in Load Report;TimeOut Response from the Server!!!
I use this code in the Button:
Code: Select all
protected void Button1_Click(object sender, EventArgs e)
{
string conn_string= "Data Source=127.0.0.1;Initial Catalog=MBDatabase;Integrated Security=True";
StiSqlDatabase database = new StiSqlDatabase("Database", conn_string);
string appDirectory = HttpContext.Current.Server.MapPath(string.Empty);
StiReport report = new StiReport();
report.Dictionary.Databases.Clear();
report.Dictionary.Databases.Add(database);
//report.RegData();
report.Load(appDirectory + "\\PriceList_20OCT_1_Online.mrt");
StiWebDesigner1.Design(report);
/
}
Do you have any idea to suggest for work out this issue?
Thanks so much for your attention.
Have a good time.
Cheers
P.S. i create the project file report "PriceList_20OCT_1_Online.mrt" with Stimulsoft.Report.Net and it contains some Forms ,is it a trouble?