I have heard a lot of times that Stimulsoft does not support MVC, would like to know if it is 100% true.
Or when you say you dont support MVC is it just the way of fetching the data and binding it to a control in a view?
Nevertheless I was trying a simple MVC application with a StiWebViewer control in it and the following is just the basic the load event has:
Code: Select all
protected void StiWebViewer1_Load(object sender, EventArgs e)
{
Stimulsoft.Report.StiReport report = new Stimulsoft.Report.StiReport();
StiWebViewer1.Report = report;
}
"Could not find a part of the path 'D:\Test\ASPXProject\ASPXProject\Home'"
I suppose if this should/shouldn't be due to the fact that Sti does not support the MVC pattern.
Or simply because it looks for some kind of temp folder at runtime to place some temp files.
I just hope there is a simple workaround to this.
I have attached the sample app I used herewith.
Thanks