vote up 0 vote down star

So I'm having problems when I try to publish the website. I'm in visual studio 2008 sp1.

I've got a bunch of user controls and on a few pages I'm using them programatically.

I've got a reference on the aspx page <%@ Reference Control="~/UserControls/Foo.ascx" %>

Then on the code behing I use

ASP.usercontrols_foo newFoo control = (ASP.usercontrols_foo)Page.LoadControl("~/UserControls/Foo.ascx");

If I navigate to the page it works fine, but when I goto publish the website I get a compile time error.

flag

25% accept rate
Does your website build ? – Cerebrus May 5 at 18:22

4 Answers

vote up 1 vote down

Argh, I'm bleeding development hours on this same issue. Does anyone have a solution to this ?

BTW: It builds if you uncheck "Allow this precompiled site to be updatable" (Right-click on the website, choose Property Pages, MSBuild Option)

But I need the site to be updatable.

link|flag
1+, In the past, I was having the same problem, as I couldn't resolve it I used reflection. I would like to know how to resolve this issue as well. – Cleiton Aug 24 at 17:20
vote up 0 vote down

It may have something to do with the specific type not being available. Can you change the control reference so the type and cast just use the base Control class:

Control control = Page.LoadControl("~/UserControls/Foo.ascx");
link|flag
vote up 0 vote down

Yes, I can cast it to Control. But then I lose direct access to the methods on the usercontrol.

I know that I can access the methods by reflecting into the control, and I've successfully done that but that's far from ideal to access all the other user controls on the site.

Also, the follow-up error is that it cant find the usercontrols that on the markup

<%@ Register src="CategoryRows.ascx" tagname="CategoryRows" tagprefix="abc" %>
<abc:CategoryRows ID="CategoryRows" runat="server" />

Note that I can run the site successfully both locally and on the server if I essentially XCopy the entire site (source code and all). But Publish fails.

link|flag
Riaz, Are you publishing your website with "Use fixed naming and single page assemblies" checked? – Cleiton Aug 24 at 17:39
I've tried with both "Use fixed naming and single page assemblies" checked and unchecked. ("Allow this precompiled site to be updatable" is checked in both cases) I get the same error: "The type or namespace name 'some_user_control_ascx' does not exist in the namespace 'ASP' (are you missing an assembly reference?)" – Riaz Hosein Aug 25 at 8:21
vote up 0 vote down

I had this same problem - actually, in my case I could get it to compile and build my website, but it would blow up spectacularly when doing an automated build.

Try replacing your code as follows:

ASP.usercontrols_foo newFoo control = (ASP.usercontrols_foo)Page.LoadControl("~/UserControls/Foo.ascx");

with

USERCONTROLS_Foo newFoo control = (USERCONTROLS_Foo)Page.LoadControl("~/UserControls/Foo.ascx");

(Capitalization will be based on how you capitalized your directory name/control name - but in either case should highlight appropriately).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.