all groups > asp.net building controls > november 2005 > threads for november 8 - 14, 2005
Filter by week: 1 2 3 4 5
ASP.NET 2.0 Web Custom Control example
Posted by Amelyan at 11/13/2005 4:38:23 PM
I need to create web custom control that can contain any type of control as
a child (similar to asp:Panel control). However, when I try to include
children in my web control on aspx page, it says 'Content is not allowed
between the opening and closing tags for element'.
Does any one have a... more >>
.Net 2.0 - WebResource attribute with css file
Posted by Vesa Juvonen at 11/11/2005 11:01:08 AM
Hi,
I'm developing a custom control using VS2005. The control has embedded
resources with it (js, images and css) and when control is rendered to page,
it uses the GetWebResourceUrl funtion to get correct address for the
resources (resources are streamed directly from assembly using
WebRe... more >>
ASCX made on VS 2003 didn't work on 2005
Posted by Alberto at 11/9/2005 8:26:20 AM
Hi All,
I have a web user control which simulates a message box, made on VS 2003. I
used to call it inside my Web Form declaring it as:
Protected WithEvents MensagemBox1 As MensagemBox
And inside the code I used to call my ascx as:
MensagemBox1.Show("Blablabla", MensagemBox.MensagemBoxStyle.... more >>
Property Greyed Out in VS
Posted by jcteague NO[at]SPAM gmail.com at 11/9/2005 7:07:14 AM
I have a Server Control that inherits from DataGrid. I've added an
object type property called DataMethodParameter, but this property is
greyed out in the properties list in Visual Studio.
private object dataMethodParameter = null;
[Category("Data"),
Description("Parameter to Pass to the s... more >>
Calling an Ascx from w/i Aspx codebehind
Posted by SABmore at 11/8/2005 11:14:50 AM
I have an aspx that I would like to "dynamically" display a user
control on. When the user clicks (LinkButton) on "Find Existing Trip"
within the aspx page, it calls the codebehind for the onClick event,
which in turn would call my ascx page. The ascx page would then
populate a drop-down list ... more >>
|