path :d:\ webhost\ plgyzx\ web\ baseinfo of access is denied

Stimulsoft Reports.WEB discussion
Post Reply
huacent
Posts: 2
Joined: Thu Jun 16, 2011 10:18 pm

path :d:\ webhost\ plgyzx\ web\ baseinfo of access is denied

Post by huacent »

Administrator hello!

i'm from china, using stimulsoft reports for asp. netthe development. in a question on the path : d:\ webhost\ plgyzx\ web\ baseinfo of access is denied, i have leased the virtual space. to write directly modify permissions the code below :

protected void Page_Load(object sender, EventArgs e)
{
if (this.StiWebViewer1.IsImageRequest) return;
{
intVID = int.Parse(Request.QueryString["V_ID"]);
StiReport rpMV = new StiReport();

rpMV.Load(Server.MapPath(@"~/Reports/" + "MVReport2011.mrt"));
rpMV.Compile();
rpMV.CompiledReport.DataSources[0].Parameters[0].ParameterValue = intVID;
this.StiWebViewer1.Report = rpMV;
}
}

help me,thank's !!
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

path :d:\ webhost\ plgyzx\ web\ baseinfo of access is denied

Post by Vladimir »

Hello,

This means that the Web application is denied access to the specified folder. To do this you need to allow Web applications to access a local directory.

Thank you.
huacent
Posts: 2
Joined: Thu Jun 16, 2011 10:18 pm

path :d:\ webhost\ plgyzx\ web\ baseinfo of access is denied

Post by huacent »

thank you!!
Andrew
Posts: 4108
Joined: Fri Jun 09, 2006 3:58 am

path :d:\ webhost\ plgyzx\ web\ baseinfo of access is denied

Post by Andrew »

Hello,

Have a great day!

Thank you.
Post Reply