vote up 3 vote down star
1

Is it possible to get design mode to work for templated user controls? I have tried following the How to: Create Templated ASP.NET User Controls on MSDN, and also tried the various tips at the bottom of page for version 2.0 of the framework, but alas, I still get the dreaded "Error creating user control" error, when switching to design view.

Should I just give up, and switch to a custom server control?

flag

I have been fighting this frustration as well. – Clever Human Aug 10 at 16:01
can you send me the user control code and the page wher ur using the control code. so tat its easy to find the issue where it resides exactly – solairaja Nov 4 at 10:49
@solariaja: You can use the C# code on the MSDN web site. – Jan Aagaard Nov 4 at 12:30
I've tested this in Visual Studio 2010, and I get the same error as in 2008 - Type 'System.Web.UI.UserControl' does not have a public property named 'MessageTemplate'. There doesn't seem to be a way to convince the Designer to use the Type of the user control. At least with a custom server control you have complete control over the Designer rendering. – Graham Clark Nov 4 at 14:08

2 Answers

vote up 1 vote down check

There is a Connect bug filed on this as well as several comments on the VS2005 version of the MSDN page. Apparently this is a long-running defect that hasn't been fixed and hasn't got a solution. In ScottGu's post about this feature, he acknowledges this doesn't work (in the comments) and points the commenters to the CompositeControl base class if they want designer support.

Probably not the answer you were hoping for, but it sounds like there's no real solution for the issue except moving to server controls.

link|flag
vote up 0 vote down

I was never able to get it to work either. It can be done easily with a regular server control, though. I posted a quick example as an answer to this question: http://stackoverflow.com/questions/1650525/asp-net-user-control-with-access-to-the-controls-that-it-wraps/1681958#1681958

link|flag

Your Answer

Get an OpenID
or

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