Ask a Question related to ASP.NET Building Controls, Design and Development.
-
B. Rubble #1
custom control works, but wont display in design time
Hello all,
I recently created a custom control in c#. The control inherits from
the datagrid. I included a reference to the dll in a web project, and
put a copy of the dll in the bin folder of the web directory. I then
added it to the toolbox by browsing to the dll on the add/remove items
dialog. I then dragged the control icon onto my webform. A little
gray box with error is displayed that says there is a parser error.
However, if I manually register the control in the html, and then use
the basic syntax of a datagrid and insert it on the page, changing the
main tag to match the registration for the control, a datagrid is
displayed on the design side...and the control works.
My question is, how can I get my custom control to drag and drop onto
the design and show a datagrid without having to manipulate the html
before?
Thanks for any help! Ive been working on this for hours. Frustrating
how the control works, but wont show up in design time.
xX B. Rubble Xx
B. Rubble Guest
-
Custom Web Control Design-Time Property
Hi!! I´m writing a custom control. It´s working OK. I´ve added the Editor atribute to one of it´t properties and it works OK when the property... -
Rendering Custom Control during design time
Hi, I have been creating simple custom controls that is able to be added to the Visual Studio toolbox and drag & drop to my aspx pages. The main... -
Custom Control Debugging - Design Time!
Greetings & Salutations, I have already scanned the posts for my problem & have found a couple that deal with problems that have the exact same... -
q: 'composite' control: works fine, but no children @ design time ?
Hi All ! I have my control, which populates inner ControlCollection via custom control builder and AddParsedSubObject function. Everything works... -
Using Table control in a custom composite control. Control does not render properly in design time.
All, I have written a very simple custom composite control that includes a control of type System.Web.UI.WebControls.Table. The control... -
lisa@starways.net #2
Re: custom control works, but wont display in design time
Barney,
Have you made a custom designer?
Lisa
B. Rubble wrote:and> Hello all,
>
> I recently created a custom control in c#. The control inherits from
> the datagrid. I included a reference to the dll in a web project,items> put a copy of the dll in the bin folder of the web directory. I then
> added it to the toolbox by browsing to the dll on the add/removethe> dialog. I then dragged the control icon onto my webform. A little
> gray box with error is displayed that says there is a parser error.
> However, if I manually register the control in the html, and then use
> the basic syntax of a datagrid and insert it on the page, changingFrustrating> main tag to match the registration for the control, a datagrid is
> displayed on the design side...and the control works.
>
> My question is, how can I get my custom control to drag and drop onto
> the design and show a datagrid without having to manipulate the html
> before?
>
> Thanks for any help! Ive been working on this for hours.> how the control works, but wont show up in design time.
>
> xX B. Rubble Xxlisa@starways.net Guest
-
B. Rubble #3
Re: custom control works, but wont display in design time
Custom Designer?? I dont believe I have. Absence of this would cause
my control to show a parser error in design time? How do I go about
creating a custom designer? I thought the fact that it was inherited
from the datagrid class would be enough.
Thanks!
xX B. Rubble Xx
B. Rubble Guest
-
Steve C. Orr [MVP, MCSD] #4
Re: custom control works, but wont display in design time
You should probably create a designer, as demonstrated near the bottom of
this article:
[url]http://SteveOrr.net/articles/BarGraphs.aspx[/url]
--
I hope this helps,
Steve C. Orr, MCSD, MVP
[url]http://SteveOrr.net[/url]
"B. Rubble" <rahkim@hotmail.com> wrote in message
news:1115913215.492427.81990@g49g2000cwa.googlegro ups.com...> Hello all,
>
> I recently created a custom control in c#. The control inherits from
> the datagrid. I included a reference to the dll in a web project, and
> put a copy of the dll in the bin folder of the web directory. I then
> added it to the toolbox by browsing to the dll on the add/remove items
> dialog. I then dragged the control icon onto my webform. A little
> gray box with error is displayed that says there is a parser error.
> However, if I manually register the control in the html, and then use
> the basic syntax of a datagrid and insert it on the page, changing the
> main tag to match the registration for the control, a datagrid is
> displayed on the design side...and the control works.
>
> My question is, how can I get my custom control to drag and drop onto
> the design and show a datagrid without having to manipulate the html
> before?
>
> Thanks for any help! Ive been working on this for hours. Frustrating
> how the control works, but wont show up in design time.
>
> xX B. Rubble Xx
>
Steve C. Orr [MVP, MCSD] Guest
-
B. Rubble #5
Re: custom control works, but wont display in design time
Thanks! I will check it out.
xX B. Rubble Xx
B. Rubble Guest



Reply With Quote

