ASP.NET: generate property value when adding control to page - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:05:23Zhttp://stackoverflow.com/feeds/question/541398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page1ASP.NET: generate property value when adding control to pageBernard Vander Beken2009-02-12T14:13:33Z2009-11-05T19:43:31Z
<p>Context: ASP.NET 3.5 / C#</p>
<p>Hi,</p>
<p>I created a user control</p>
<pre><code>public partial class MyControl : UserControl
{
// EDIT: example first used "UniqueId" as property name, which was wrong.
public Guid MyId { get; set; }
// ...
}
</code></pre>
<p>and this example usage</p>
<pre><code><uc1:MyControl
ID="myControl"
MyId="443CBF34-F75F-11DD-BE2F-68C555D89123"
runat="server" />
</code></pre>
<p>Steps:</p>
<ul>
<li>Add this control to a web form (aspx)</li>
</ul>
<p>Expected result:</p>
<ul>
<li>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.</li>
</ul>
<p>Actual result:</p>
<ul>
<li>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.</li>
</ul>
<p>If this is not possible:</p>
<ul>
<li>Workaround 1: Would it be possible to achieve this using a server control? How?</li>
<li>Workaround 2: is it possible to achieve this using a UserControl design-mode task?</li>
</ul>
<p>Clarification: </p>
<ul>
<li>persisting the property value is <strong>not</strong> 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.</li>
<li>the MyId attribute does not need to be rendered at runtime.</li>
</ul>
<p>Gr B!</p>
http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page/541428#5414280Answer by Nick Berardi for ASP.NET: generate property value when adding control to pageNick Berardi2009-02-12T14:20:55Z2009-02-12T15:09:51Z<p>You have a couple problems here, but first I will answer your questions about the workarounds. </p>
<ol>
<li>No you are already using a server control.</li>
<li>No design-mode is to just make the lives of the developer easy, it doesn't effect anything else</li>
</ol>
<p>You have two problems here. There is already a property called <code>UniqueID</code> I don't know if you were trying to overload that, but the question wasn't clear. The second problem is that your UniqueID essentially not getting stored anywhere. Try the following code:</p>
<pre><code>public Guid UniqueId {
get { return (Guid)ViewState["MyUserControlUniqueId"]; }
set { ViewState["MyUserControlUniqueId"] = value; }
}
</code></pre>
<p>That will store the GUID in the ViewState so that you can retrieve it on post backs.</p>
<p><strong>Update:</strong> Given your comment you need to override/use this method to add attributes to the rendered content. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webcontrol.addattributestorender.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webcontrol.addattributestorender.aspx</a></p>
http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page/553459#5534590Answer by TreeUK for ASP.NET: generate property value when adding control to pageTreeUK2009-02-16T14:28:11Z2009-02-16T14:28:11Z<p>If I understand your question correctly, you are exposing a property on your user control called MyId. This allows you to set the property wherever you put that control.</p>
<p>What you also want, is for the rendered HTML to also include this attribute and value.</p>
<p>If that's the case, the property MyId is not passed through to the HTML, it's only because the user control has MyId as a property that it's visible in the designer.</p>
<p>In your user control you will have defined the markup that gets rendered.
So for example if you have:</p>
<pre><code><asp:Panel runat="Server" Id="myControlDiv">Some other content</asp:Panel>
</code></pre>
<p>You can then in your controls prerender event (or wherever else you choose) put</p>
<pre><code>myControlDiv.Attributes.Add("MyId", SomeGuid.ToString())
</code></pre>
<p>Which will then get output in the HTML as </p>
<pre><code><div id="generatedID" MyID="443CBF34-F75F-11DD-BE2F-68C555D89123">Some other content</div>
</code></pre>
http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page/604784#6047840Answer by Xian for ASP.NET: generate property value when adding control to pageXian2009-03-03T01:31:21Z2009-03-03T01:31:21Z<p>So you just want a unique ID generated that you only ever use in design time?</p>
<p>Why not override Object.GetHasCode();</p>
<p>And then exposure this as a property?</p>
http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page/1682859#16828590Answer by Bruce for ASP.NET: generate property value when adding control to pageBruce2009-11-05T19:08:10Z2009-11-05T19:08:10Z<p>Did you ever figure this out?</p>
http://stackoverflow.com/questions/541398/asp-net-generate-property-value-when-adding-control-to-page/1683047#16830471Answer by rick schott for ASP.NET: generate property value when adding control to pagerick schott2009-11-05T19:43:31Z2009-11-05T19:43:31Z<p><a href="http://msdn.microsoft.com/en-us/magazine/cc164048.aspx#S6" rel="nofollow">Custom Design-time Control Features in Visual Studio .NET</a></p>