all groups > asp.net building controls > july 2004 > threads for july 8 - 14, 2004
Filter by week: 1 2 3 4 5
ImageAlign not available for ImageButtons
Posted by Jordan at 7/14/2004 4:07:41 PM
I'm creating dynamic imagebuttons but can't set the ImageAlign attribute.
Any reason why it's not allowed?
j
... more >>
Control Removing contents when editing properties
Posted by MattC at 7/14/2004 3:10:25 PM
I have a custom control, that I add via the HTML view of my aspx page. I
then also manually added a datagrid as a child control.
<mycontrol:tagname runat=server id=foo>
<asp:datagrid runat=server id=foobar></asp:datagrid>
</mycontrol:tagname>
When I switch to design mode and edit the c... more >>
Customdesigner
Posted by richie_hackett NO[at]SPAM hotmail.com at 7/14/2004 1:17:51 PM
Hi, I'm trying to write a web control which is basically a calendar
control(need to add extra functionality later)
I have the first phase working eg a calendar control is rendered and
works as expected but because I inherit webcontrol not Calendar I
don't get the properties for it in the VS de... more >>
How to Implement an Custom Image Control
Posted by Reiner Max at 7/14/2004 11:35:35 AM
Hello
As i know images must be return as an aspx page in the src attribute from
the img tag.
But what is the best strategy to build a Custom Control with Desing Time
Support.
Regards
Max... more >>
Isn't DataGrid.Render(writer) supposed to automatically call RenderBeginTag(writer) and RenderEndTag(writer)?
Posted by Henri at 7/13/2004 8:53:09 PM
Hi,
I'm trying to customize a DataGrid adding custom rows before the endTag
</TABLE>, and also some html before and after the control itself.
So I wrote :
'************************************************************
Protected Overrides Sub Render(ByVal writer As HtmlTextWriter)
write... more >>
Child user control accessing parent properties
Posted by Michael at 7/13/2004 1:40:18 PM
We have a user control (Titlebar) that loads other user controls (children)
into itself based on a property set in the HTML:
<fss:Titlebar id="empStmtListing" runat="server"
UserControl="StatementListing.ascx" Width="90"
HelpId="1" ListingType="3"></fss:Titlebar>
Some of the children u... more >>
Custom Control won't appear in design mode?
Posted by Dave at 7/12/2004 7:14:01 PM
Hi,
I created a custom control, regisitered it at the top of the page, and it works fine. However, it doesn't appear on the page during design mode as I've seen other controls or event ASP.NET controls (i.e PlaceHolder) as listed below
DESIGN MODE:
[ControlClass "ControlClass ID"]
or
[Pl... more >>
Creating a Custom Color Property list
Posted by Martin Dobson at 7/12/2004 4:13:02 AM
Basically I can't figure out for the life of me how to display a custom list of colors in the property window. I have a property called ForeColor() which I want to use a custom list of colors which I have built as a structure. I mimiced the design of system.drawing.color to do this but it doesn't wo... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
nested custom control
Posted by yanivya NO[at]SPAM cellcom.co.il at 7/11/2004 7:26:49 AM
Hi all,
I have built a custom control (X) which has to be place in another
custom control (Y).
I have created a collection of (X) controls in (Y) c'tor. The result
of (Y) Render method don't take the Render of (X), so for now all
rendered HTML transfered only from (Y) control.
How can I impl... more >>
What is .net
Posted by Midnight Java Junkie at 7/10/2004 4:40:37 AM
Dear Colleagues:
I feel that the dumbest questions are those that are never asked. I have
been given the opportunity to get into .NET. Our organization has a
subscription with Microsoft that basically entitled to us to just about
every .Net development tool you can imagine. I cant even begi... more >>
TreeControl recommendation?
Posted by Phil Wright at 7/9/2004 1:28:45 PM
I am starting work on my first ASP.NET project.
I need a tree control that has the same look and feel as the standard
windows one. It must be able to show images along with the node text and be
single select. I also need to have the ability to show a context menu when
the user right clicks a t... more >>
TypeConverter HELP Needed!
Posted by ME at 7/9/2004 6:38:50 AM
Ok, I have a property called ControlType. The property is of type 'Type'.
It stores just the type of control a user selected. I am really confused
how I would implement a converter on this type of property since all I need
returned is the Type of control being referenced and not the control its... more >>
Any way to avoid mass conversion of #INCLUDE files to UserControls?
Posted by johna NO[at]SPAM cbmiweb.com at 7/8/2004 10:56:39 AM
I have a very large classic ASP site that is making heavy use of
server-side #INCLUDE of .ASP files within .ASP files. I've researched
and seen recommendations describing how you can convert all files to
be included to user controls and then change all including files to
use "register directives... more >>
|