all groups > asp.net building controls > august 2003 > threads for august 15 - 21, 2003
Filter by week: 1 2 3 4 5
Why is it that a TableCell cannot have both Text and a Child Control?
Posted by Robert Zurer at 8/21/2003 6:03:08 PM
Why are child controls and text mutually exclusive using ASP.NET?
The code below gives me either one or the other?
private void Page_Load(object sender, System.EventArgs e)
{
Control formMain = this.FindControl("Form1");
Table table = new Table();
TableRow row = new TableRow();... more >>
templated control default
Posted by Amit Patel at 8/21/2003 10:41:59 AM
Hello,
I've created a templated control in C#, and I am trying to
have default values for templates if the user of the
control does not specify. For example, if the aspx code
should look like:
<custom:myControl runat="server" id="control1">
<aHeader>a non-default Header</aHeader>
</cus... more >>
Dynamic Loading Style.
Posted by Robin van Nooy at 8/20/2003 6:05:42 PM
Is there an easy way to load a style like loading a template with
LoadTemplate.
I've created a workaround for this, but there must be a better way to do
this.
I want to create a kind of skin-system. But I want to load the layout of
datafields and the style in different files. So I can choos... more >>
Problem with a usercontrol
Posted by Amir Davoodi at 8/20/2003 1:33:06 AM
Dear Friends,
I'm working on a web based(ASP.Net) project. This project
contains multiple web projects. I want to use a
usercontrol which has been developed in some of these
projects, within another project. I Recieve this parser
Error :
The virtual path '[The path of that usercontrol]' m... more >>
EventArugment Not Being Passed
Posted by Lucas Tam at 8/19/2003 2:24:21 PM
Hi all,
I've been struggling for the past few days to get a custom control to
pass events to RaisePostBackEvent.
My page successfully fires the RaisePostBackEvent, however, the
EventArugment is always nothing. I do not understand why the event
argument is not being passed.
Here is ho... more >>
Datagrid Binding Error: "Object does not match target type."
Posted by Karahan Celikel at 8/19/2003 9:49:53 AM
I have a datagrid in which I want to visualize objects of various type
(they inherit from the same base class). I want to display common properties
of the objects over the grid.
At runtime I create an ArrayList that contains all the objects . When I make
the binding I obtain the following err... more >>
Can someone comment my Custom control?
Posted by Flare at 8/18/2003 7:50:13 PM
Hi.
I have now used ASP.NET for a couple of weeks and it _really_ looks good.
I have made a custom control, wich has to act as my header on every site.
Before i go any further with my control I would appreciate your comments on
the design (wich problably is bad) Sorry for the long post...
... more >>
Reusing web user controls across application
Posted by Niranjan at 8/16/2003 4:41:55 PM
Hi,
How can we reuse user controls across web applications. I
have controls that are common to my company and want to
reuse them across all applications.
Thanks
Niranjan
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
|