show/hide this revision's text 3 Clarification

Context: ASP.NET 3.5 / C#

Hi,

I created a user control

public partial class MyControl : UserControl
{
    // EDIT: example first used "UniqueId" as property name, which was wrong.
    public Guid MyId { get; set; }
    // ...
}

and this example usage

<uc1:MyControl 
    ID="myControl" 
    MyId="443CBF34-F75F-11DD-BE2F-68C555D89123"
    runat="server" />

Steps:*

  • Add this control to a web form (aspx)

Expected result:-

  • the HTML for the user control is added, a unique value (corresponding to Guid.NewGuid()) for MyId is set in the ASPX HTML at design-time as the MyId attribute value.

Actual result:-

  • the HTML for the user control is added, a unique value for MyId is not set in the HTML at design time for the MyId Attribute value.

If this is not possible:-

  • Workaround 1: Would it be possible to achieve this using a server control? How?-
  • Workaround 2: is it possible to achieve this using a UserControl design-mode task?

Clarification: -

  • persisting the property value is not an issue, since it never changes for a control intance and is automatically set by ASP.NET through the control declaration in the aspx page.
  • the MyId attribute does not need to be rendered at runtime.

Gr B!

show/hide this revision's text 2 added 86 characters in body

Context: ASP.NET 3.5 / C#

Hi,

I created a user control

public partial class MyControl : UserControl
{
    // EDIT: example first used "UniqueId" as property name, which was wrong.
    public Guid UniqueId MyId { get; set; }
    // ...
}

and this example usage

<uc1:MyControl 
    ID="myControl" 
    UniqueId="443CBF34-F75F-11DD-BE2F-68C555D89123MyId="443CBF34-F75F-11DD-BE2F-68C555D89123"
    runat="server" />

Steps: * Add this control to a web form (aspx)

Expected result: - the HTML for the user control is added, a unique value (corresponding to Guid.NewGuid()) for UniqueId MyId is set in the UniqueAttribute HTML as the MyId attribute value.

Actual result: - the HTML for the user control is added, a unique value for UniqueId MyId is not set in the UniqueAttribute HTML for the MyId Attribute value.

If this is not possible: - Workaround 1: Would it be possible to achieve this using a server control? How? - Workaround 2: is it possible to achieve this using a UserControl design-mode task?

Clarification: - persisting the property value is not an issue, since it never changes for a control intance and is automatically set by ASP.NET through the control declaration in the aspx page.

Gr B!

show/hide this revision's text 1

ASP.NET: generate property value when adding control to page

Context: ASP.NET 3.5 / C#

Hi,

I created a user control

public partial class MyControl : UserControl
{
    public Guid UniqueId { get; set; }
    // ...
}

and this example usage

<uc1:MyControl 
    ID="myControl" 
    UniqueId="443CBF34-F75F-11DD-BE2F-68C555D89123"
    runat="server" />

Steps: * Add this control to a web form (aspx)

Expected result: - the HTML for the user control is added, a unique value (corresponding to Guid.NewGuid()) for UniqueId is set in the UniqueAttribute value.

Actual result: - the HTML for the user control is added, a unique value for UniqueId is not set in the UniqueAttribute value.

If this is not possible: - Workaround 1: Would it be possible to achieve this using a server control? How? - Workaround 2: is it possible to achieve this using a UserControl design-mode task?

Gr B!