![]() |
|
|
|||||||
![]() |
ASP Net - Persistence problem with custom control property using PersistenceMode.InnerProperty |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
I'm having trouble getting my custom control to save properties that are
decorated with the PersistenceMode.InnerProperty attribute. The properties that are saved with PersistenceMode.Attribute are saved OK. The contents of the ASPX file only contains the attribute, not the inner property: <cc1:MyTestClass id="MyTestClass1" runat="server" S1="a"></cc1:MyTestClass> Here's the code I'm testing with: '------------------------------------------------------------- Imports System.ComponentModel Imports System.Web.UI Imports System.Web.UI.webcontrols <PersistChildren(False), _ Serializable(), _ ParseChildren(True)> _ Public Class MyTestClass Inherits Control Private _s1, _s2 As String Private _style As Style <DesignerSerializationVisibility(DesignerSerializa tionVisibility.Visible), _ NotifyParentProperty(True), _ PersistenceMode(PersistenceMode.Attribute)> _ Public Property S1() As String Get Return _s1 End Get Set(ByVal Value As String) _s1 = Value End Set End Property <DesignerSerializationVisibility(DesignerSerializa tionVisibility.Visible), _ NotifyParentProperty(True), _ PersistenceMode(PersistenceMode.InnerProperty)> _ Public Property S2() As String Get Return _s2 End Get Set(ByVal Value As String) _s2 = Value End Set End Property End Class jahyen |
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Dynamically added TreeNode Control not render my custom attribute | venkyzealous | Software | 0 | 05-10-2008 03:46 PM |
| Custom control dropdownlist - need advice | tcstom | Software | 0 | 04-18-2008 11:28 AM |
| Getting error in Custom control | ShakilaRahmanLaboni | Software | 2 | 08-01-2007 02:38 PM |
| ASP.NET: User Control Events is Not Displaying in a Property Window | BabuA | Software | 0 | 09-14-2006 05:44 PM |
| JVC remote control - weird problem | Robb Scott | DVD Video | 0 | 08-17-2004 12:01 PM |