472,345 Members | 1,511 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,345 software developers and data experts.

"Failed to map the path" - error on first visit

hi,

I have a repeater which dynamically loads another usercontrol throught
databinding:

OnClick: DataBind()

rptProduct_ItemDataBound: ViewSmall _viewSmall = (ViewSmall)
LoadControl("ViewSmall.ascx");

The two UserControls are in the same directory on the server.
The webroot for this application is c:\inetpub\wwwroot\joa\InfoCenter\Test
and the usercontrols are placed in
c:\inetpub\wwwroot\joa\InfoCenter\Test\DesktopModu les\Csite.Product\ViewSmal
l.ascx

I get this error the first time I click this button after recompiling my
project - but only the first; all subsequent clicks, reload or whatever,
finds the UserControl and displays everything correctly:
Failed to map the path
'/InfoCenter/Test/DesktopModules/Csite.Product/ViewSmall.ascx'.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Failed to map the path
'/InfoCenter/Test/DesktopModules/Csite.Product/ViewSmall.ascx'.

Source Error:

Line 265: {
Line 266: PlaceHolder phProduct =
(PlaceHolder)e.Item.FindControl("phProduct");
Line 267: ViewSmall _viewSmall = (ViewSmall)
LoadControl("ViewSmall.ascx");
Line 268: InfoProductRow product = (InfoProductRow)e.Item.DataItem;
Line 269: _viewSmall.Product = product;

Source File:
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs Line: 267

Stack Trace:

[HttpException (0x80004005): Failed to map the path
'/InfoCenter/Test/DesktopModules/Csite.Product/ViewSmall.ascx'.]

System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6 .MapPathSlowUsingIISCore(S
tring path) +197
System.Web.Hosting.ISAPIWorkerRequest.MapPath(Stri ng path) +419
System.Web.HttpRequest.MapPath(String virtualPath, String baseVirtualDir,
Boolean allowCrossAppMapping) +254
System.Web.UI.TemplateControlParser.CompileAndGetP arserCacheItem(String
virtualPath, String inputFile, HttpContext context) +99
System.Web.UI.TemplateControlParser.GetCompiledTyp e(String virtualPath,
String inputFile, HttpContext context) +12
System.Web.UI.UserControlParser.GetCompiledUserCon trolType(String
virtualPath, String inputFile, HttpContext context) +176
System.Web.UI.TemplateControl.LoadControl(String virtualPath) +41
Csite.InfoCenter.Product.List.rptProduct_ItemDataB ound(Object sender,
RepeaterItemEventArgs e) in
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs:267
System.Web.UI.WebControls.Repeater.OnItemDataBound (RepeaterItemEventArgs
e) +110
System.Web.UI.WebControls.Repeater.CreateItem(Int3 2 itemIndex,
ListItemType itemType, Boolean dataBind, Object dataItem) +139
System.Web.UI.WebControls.Repeater.CreateControlHi erarchy(Boolean
useDataSource) +475
System.Web.UI.WebControls.Repeater.OnDataBinding(E ventArgs e) +49
System.Web.UI.WebControls.Repeater.DataBind() +23
Csite.InfoCenter.Product.List.rptProducts_ItemData Bound(Object sender,
RepeaterItemEventArgs e) in
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs:260
System.Web.UI.WebControls.Repeater.OnItemDataBound (RepeaterItemEventArgs
e) +110
System.Web.UI.WebControls.Repeater.CreateItem(Int3 2 itemIndex,
ListItemType itemType, Boolean dataBind, Object dataItem) +139
System.Web.UI.WebControls.Repeater.CreateControlHi erarchy(Boolean
useDataSource) +475
System.Web.UI.WebControls.Repeater.OnDataBinding(E ventArgs e) +49
System.Web.UI.WebControls.Repeater.DataBind() +23
Csite.InfoCenter.Product.List.DataBind(Object[] objectArray) in
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs:190
Csite.InfoCenter.Product.List.GetSearchData(InfoCe nterDB db, Guid
guidSortiment, Guid guidManufacturer, SearchType searchType, String
searchData, Int32 pageIndex) in
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs:135
Csite.InfoCenter.Product.List.InitProductList() in
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs:47
Csite.InfoCenter.Product.List.OnProductSearch(Obje ct sender, Sortiment
sortiment, SearchType searchType, String searchData) in
c:\inetpub\wwwroot\joa\infocenter\test\desktopmodu les\csite.product\viewlist
..ascx.cs:277
Csite.InfoCenter.ProductHandler.OnSearchEventHandl er.Invoke(Object
sender, Sortiment sortiment, SearchType searchType, String searchData) +0
Csite.InfoCenter.ProductHandler.SearchEvents.OnSea rch(Object sender,
Sortiment sortiment, SearchType searchType, String searchData) in
C:\Inetpub\wwwroot\joa\InfoCenter\InfoCenter\Csite .EventHandler\Events.cs:12
8
Csite.InfoCenter.Product.Search_postback.Search(Ob ject sender,
CommandEventArgs e) in
c:\inetpub\wwwroot\joa\infocenter\Test\DesktopModu les\Csite.Product\Search_p
ostback.ascx.cs:71
System.Web.UI.WebControls.Button.OnCommand(Command EventArgs e) +110

System.Web.UI.WebControls.Button.System.Web.UI.IPo stBackEventHandler.RaisePo
stBackEvent(String eventArgument) +115
System.Web.UI.Page.RaisePostBackEvent(IPostBackEve ntHandler
sourceControl, String eventArgument) +18
System.Web.UI.Page.RaisePostBackEvent(NameValueCol lection postData) +33
System.Web.UI.Page.ProcessRequestMain() +1277

Can you help me?

regards,
Jonas
Nov 18 '05 #1
1 4081
Hi Jonas,

From your description, you're dynamically load one Usercontrol in a
webpage's repeater control's databinding event , but you got "Failed to map
the path" error every the first time you fire the databinding, yes?

After viewing the error info and call stack you provided, I'm also feeling
very strange since the absolute path asp.net is locating the control is
correct according to your description. That's the
'/InfoCenter/Test/DesktopModules/Csite.Product/ViewSmall.ascx'
and /InfoCenter should be the site root ,yes?

And as to narrow down the problem, I think we can try performing the
following test:
1. Create a new simple page and load the Usercontrol dynamically to see
whether there has the same problem.

2. If #1 hasn't any problem, try adding a repeater or datalist and
dynamically load the control in the template databound control's
databinding event to see whether the problom will occur.

In addition, based on searching in the former issues , there is some issue
mentioned that sometimes when the usercontrol's ascx templatefile is
locked by something it will popup "failed to map the path" error. So we can
also have a check to see whether there're any other programs which may lock
the usercontorl file.

If you have any other findings, please also feel free to post here. Thanks.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Nov 18 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Alpha | last post by:
I use FolderBrowserDlg for user to select a folder path then store it in the sql table. I then retrieve it to concatenate in a sqlcommand text to...
1
by: Steve Grahovac | last post by:
I have been having trouble the last few days opening any ASP.NET web forms in the design view in the designer. Every time I clicked on an aspx...
0
by: dsh | last post by:
I have an ASP.NET web application running on a load-balanced Windows Server 2003 web farm running IIS 6.0, using Active Directory authentication. ...
1
by: John Dalberg | last post by:
Running Crystal Reports with the hotfixes and patches & VS 2003. I created a CR report on my development server which has SQL Server. The report...
1
by: Roy | last post by:
Hey all, I have a VB App which uses the bundled version of Crystal Reports for VS.NET 2003. It works fine in when I run it using VS *but* when I...
0
by: awbacker | last post by:
Havin a problem with MapPath() failing on me. It doesn't do it right away, but at some point it dies and won't come back. I have to hiccup the...
2
by: Jeff_Mac | last post by:
Hi there. I'm a bit of a newbie, and I would appreciate any help that anyone can give me on an error I'm getting with Crystal Reports. Every time...
1
by: aaaaaa | last post by:
running a crystal (v10) reporting app on a virtual web server and getting the "Validation of viewstate MAC failed...." error when opening the...
0
by: Radu | last post by:
Hi. I have finished a web-site - and it runs fine on my dev machine. I have deployed it onto the server, and now I have this (which, by the way,...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.