all groups > asp.net building controls > august 2003 > threads for august 1 - 7, 2003
Filter by week: 1 2 3 4 5
Dynamically create non-fixed number of TextBoxes in Composite Control
Posted by Paul at 8/7/2003 3:55:24 PM
Hi,
I have a composite control(TextBoxControl.cs) in my
DynamicTextBox.aspx. On the Page_Load of the
DynamicTextBox.aspx page, I am calling a business tier
assembly, which is returning an ArrayList containing an
unknown amount of objects. I would like to pass this
ArrayList to my compo... more >>
Code Blocks in Custom Control
Posted by Darrin Boyd at 8/6/2003 9:27:02 AM
I have developed a custom control and I want to allow the
user to insert code blocks in the .aspx (or .ascx) file to
set attributes on the control. For example, I want to
allow the user to do this:
<pwc:SortColumn HeadingText='<%=GetHeadingText(0)%
>'/>
<pwc:SortColumn HeadingTe... more >>
ControlDesigner not invoked on custom control when control is rendered within another custom control
Posted by msokol NO[at]SPAM myrealbox.com at 8/6/2003 8:20:38 AM
I have a custom control that has a simple designer (derived from
System.Web.UI.Design.ControlDesigner) associated with it (using the
DesignerAttribute). The overriden GetDesignTimeHtml provides the
design-time display correctly when this control is placed on a web
form.
My problem is I also ... more >>
IRootDesigner in ASP.NET
Posted by Mihail Luca at 8/5/2003 3:21:01 PM
Hi !
After the first researches I found out that with WebForms there is no easy
way to implement an IRootDesigner.
After inspecting the Web.UI.Page class I have found that it uses these
attribute:
[ DesignerAttribute(typeof(
Microsoft.VSDesigner.WebForms.WebFormDesigner) ),
System.ComponentM... more >>
Exposing Font Name Property for Custom Control
Posted by Deep S. at 8/4/2003 12:04:57 PM
Hi,
I've created a custom web control for using in my web application.
I want to expose some Font-Name Properties of the control
like i did for the Color and Boolean values, so that in the properties
pane, a proper list is displayed for user selection.
Like for picking up the color ... more >>
Control assembly and designer problem
Posted by Mark Aurit at 8/3/2003 5:38:37 PM
Hi
Ive found a real nice class that inherits from DataGrid
and adds a lot of functionality to it, enough so I want to
use it in the app Ive mostly built. I took the class,
changed the namespace, and compiled it into the namespace
Im using. When I look in ildasm, I can see it with its
pr... more >>
asp:Table and border-collapse
Posted by Michael Tissington at 8/1/2003 1:12:08 PM
I'm using the asp:Table control and it insists on adding the style
"border-collapse:collapse;"
Any idea how I can make it use the default of separate?
Thanks.
--
Michael Tissington
Oaklodge Technologies
http://www.oaklodge.com/technology
... more >>
Design-time problem with ParseControl ...
Posted by Francois Beauchemin at 8/1/2003 9:25:11 AM
Hi, I try to create a custom Webcontrol who load others controls from a
string... My code seems to works well at runtime, but in design-time I
have a NullReferenceException when I try to parse a control with
ParseControl. ( see code bellow )
It is a bug of ParseControl? Or maybe ParseCon... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to use HtmlControlDesigner
Posted by Karsten Lundsgaard at 8/1/2003 4:41:16 AM
Hi,
I'm making some runtime-invisible-WebControls, which
should be visible at designtime like the "Repeater"-
component in the "Web Forms Toolbox", and invisible at
runtime.
I think that I have to use HtmlControlDesigner.
Is there somebody who have an exsample on how to make the
Desig... more >>
|