473,395 Members | 1,978 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

LoadControl VirtualPath question

I have a C# in my web application called BasePage. It inherits from
System.Web.UI.Page. I'm using page inheritance in my web app so all my pages
have an identical look and feel by inheriting from BasePage.

In my BasePage class, I have an OnInit method defined as shown:

protected override void OnInit(System.EventArgs e)
{
this.Controls.AddAt(0, LoadControl("_header.ascx"));
base.OnInit(e);
}

_header.ascx, and _footer.ascx are in the root of the virtual directory. And
if I had a page called default.aspx which inherited from BasePage,
everything is cool.

Let's say however, that I have a directory called misc, and I have a page
called misc.aspx within that directory that inherits BasePage. When I browse
it, I get an error.

The error occurs at this.Controls.AddAt(0, LoadControl("_header.ascx"));
because the app obviously can't find _header.ascx at
c:\inetpub\wwwroot\LRWIntranet\misc\_header.ascx

But if I change the OnInit function in BasePage trying to have it always
know to look for _header.ascx in the root, my app breaks.
For example:
this.Controls.AddAt(0, LoadControl("/_header.ascx"));
I get The virtual path '/_header.ascx' maps to another application, which is
not allowed. when I browse to http://localhost/lrwintranet/misc/misc/aspx

I always want the call to LoadControl to look in the root of the virtual
directory, but I can't get it to do that, any idea?
Nov 17 '05 #1
0 1827

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

Similar topics

3
by: Robert Walter | last post by:
I want to user the Page method LoadControl inside the Global.asax.cs but when I instantiate a page and try it I get the following error... System.NullReferenceException: Object reference not set...
10
by: Umut Tezduyar | last post by:
It seems, it is caching it. The following code is an example for it. How can avoid from this. override void OnLoad (sender and eventargs) { Control control = this.LoadControl (path);...
2
by: Keith Patrick | last post by:
Maybe my expectations are just too low because I haven't read much documentation on this method, but basically, I am trying to load a user control dynamically without using a virtual path (I have...
0
by: Carl Wright | last post by:
Hi I'm having this major issue loading a usercontrol at runtime using the overload on Loadcontrol(type,object). Here's the code in the aspx code-behind file Dim myControl As New Control Dim...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.