HighTechTalks DotNet Forums  

Collection Property in web custom control

ASP.net Building Controls microsoft.public.dotnet.framework.aspnet.buildingcontrols


Discuss Collection Property in web custom control in the ASP.net Building Controls forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Class
 
Posts: n/a

Default Collection Property in web custom control - 01-16-2007 , 11:07 AM






Hi all,

I'm building a custom control. I would like that on the control you can set
some 'rights'
For that I have an enum:
public enum GroupRights

{
Group0 = 0,
Group1 = 1,
Group2 = 2,
Group3 = 3,
Group4 = 4,
Group5 = 5,
}

In design time I want to set these right (can be multiple rights at the same
time)
So I put them in a generic list:

[Category("Rights")]
[DefaultValue("")]
[Localizable(true)]
[Bindable(true)]
public List<GroupRights> ControlRights
{
get
{
List<GroupRights> temp = (List<GroupRights>)ViewState["ControlRights"];
return ((object)temp == null) ? new List<GroupRights>() : temp;
}

set
{
ViewState["ControlRights"] = value;
}}

In desgin time I get the controls window with the GrouRights enum to choose
from.
But when I add one right in the collection window I get the message:

Cannot create an object of type
'System.Collections.Generic.List`1[[GroupRights, MaxControls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' from its string
representation '(Collection)' for the 'ControlRights' property.

Also the property can not be read out during runtime.

What am I doing wrong or forgetting?

tia,

Class




Reply With Quote
  #2  
Old   
Michael Tkachev
 
Posts: n/a

Default Re: Collection Property in web custom control - 01-17-2007 , 07:27 AM






Your class must be serializible. Or use Session instead of ViewState.

Sincerely yours,
Michael B. Tkachev.
m_tkachev (AT) hotmail (DOT) com

"Class" <NoSpam@Class> wrote

Quote:
Hi all,

I'm building a custom control. I would like that on the control you can
set some 'rights'
For that I have an enum:
public enum GroupRights

{
Group0 = 0,
Group1 = 1,
Group2 = 2,
Group3 = 3,
Group4 = 4,
Group5 = 5,
}

In design time I want to set these right (can be multiple rights at the
same time)
So I put them in a generic list:

[Category("Rights")]
[DefaultValue("")]
[Localizable(true)]
[Bindable(true)]
public List<GroupRights> ControlRights
{
get
{
List<GroupRights> temp = (List<GroupRights>)ViewState["ControlRights"];
return ((object)temp == null) ? new List<GroupRights>() : temp;
}

set
{
ViewState["ControlRights"] = value;
}}

In desgin time I get the controls window with the GrouRights enum to
choose from.
But when I add one right in the collection window I get the message:

Cannot create an object of type
'System.Collections.Generic.List`1[[GroupRights, MaxControls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' from its string
representation '(Collection)' for the 'ControlRights' property.

Also the property can not be read out during runtime.

What am I doing wrong or forgetting?

tia,

Class






Reply With Quote
  #3  
Old   
Class
 
Posts: n/a

Default Re: Collection Property in web custom control - 01-17-2007 , 07:50 AM



Hi Michael,

Thanks for your response.

Quote:
Your class must be serializible. Or use Session instead of ViewState.
Which class do you mean, that needs to be serializable?
The enum? or The List class?
The list is a generic .NET collection class which is serializable already,
right?
Session?? There is no Session object in a web custom control, what do you
mean??

Thanks,
Class

"Michael Tkachev" <m_tkachev (AT) hotmail (DOT) com> wrote

Quote:
Your class must be serializible. Or use Session instead of ViewState.

Sincerely yours,
Michael B. Tkachev.
m_tkachev (AT) hotmail (DOT) com

"Class" <NoSpam@Class> wrote in message
news:eOfpVChOHHA.2140 (AT) TK2MSFTNGP03 (DOT) phx.gbl...
Hi all,

I'm building a custom control. I would like that on the control you can
set some 'rights'
For that I have an enum:
public enum GroupRights

{
Group0 = 0,
Group1 = 1,
Group2 = 2,
Group3 = 3,
Group4 = 4,
Group5 = 5,
}

In design time I want to set these right (can be multiple rights at the
same time)
So I put them in a generic list:

[Category("Rights")]
[DefaultValue("")]
[Localizable(true)]
[Bindable(true)]
public List<GroupRights> ControlRights
{
get
{
List<GroupRights> temp = (List<GroupRights>)ViewState["ControlRights"];
return ((object)temp == null) ? new List<GroupRights>() : temp;
}

set
{
ViewState["ControlRights"] = value;
}}

In desgin time I get the controls window with the GrouRights enum to
choose from.
But when I add one right in the collection window I get the message:

Cannot create an object of type
'System.Collections.Generic.List`1[[GroupRights, MaxControls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' from its string
representation '(Collection)' for the 'ControlRights' property.

Also the property can not be read out during runtime.

What am I doing wrong or forgetting?

tia,

Class








Reply With Quote
  #4  
Old   
Michael Tkachev
 
Posts: n/a

Default Re: Collection Property in web custom control - 01-18-2007 , 06:56 AM



Take the "Page" property and there you can find Session

"Class" <NoSpam@Class> wrote

Quote:
Hi Michael,

Thanks for your response.

Your class must be serializible. Or use Session instead of ViewState.

Which class do you mean, that needs to be serializable?
The enum? or The List class?
The list is a generic .NET collection class which is serializable already,
right?
Session?? There is no Session object in a web custom control, what do you
mean??

Thanks,
Class

"Michael Tkachev" <m_tkachev (AT) hotmail (DOT) com> wrote in message
news:uqGLwsjOHHA.140 (AT) TK2MSFTNGP04 (DOT) phx.gbl...
Your class must be serializible. Or use Session instead of ViewState.

Sincerely yours,
Michael B. Tkachev.
m_tkachev (AT) hotmail (DOT) com

"Class" <NoSpam@Class> wrote in message
news:eOfpVChOHHA.2140 (AT) TK2MSFTNGP03 (DOT) phx.gbl...
Hi all,

I'm building a custom control. I would like that on the control you can
set some 'rights'
For that I have an enum:
public enum GroupRights

{
Group0 = 0,
Group1 = 1,
Group2 = 2,
Group3 = 3,
Group4 = 4,
Group5 = 5,
}

In design time I want to set these right (can be multiple rights at the
same time)
So I put them in a generic list:

[Category("Rights")]
[DefaultValue("")]
[Localizable(true)]
[Bindable(true)]
public List<GroupRights> ControlRights
{
get
{
List<GroupRights> temp = (List<GroupRights>)ViewState["ControlRights"];
return ((object)temp == null) ? new List<GroupRights>() : temp;
}

set
{
ViewState["ControlRights"] = value;
}}

In desgin time I get the controls window with the GrouRights enum to
choose from.
But when I add one right in the collection window I get the message:

Cannot create an object of type
'System.Collections.Generic.List`1[[GroupRights, MaxControls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' from its string
representation '(Collection)' for the 'ControlRights' property.

Also the property can not be read out during runtime.

What am I doing wrong or forgetting?

tia,

Class










Reply With Quote
  #5  
Old   
Nathaniel Greene
 
Posts: n/a

Default Re: Collection Property in web custom control - 01-20-2007 , 01:10 AM



Whoa, Whoa, Whoa, Whoa.
Remember that a session should only be used to store information when this
information is stored on a "per" user basis. What if you have 30 of these
controls on a single web page and the user is browsing 2 different web pages
at the same time ont he same site under the same session. That's 60 controls
overwriting each other.

Class, what is happening is the fact that you are trying to serialize Enums.
Your first step should be to convert your List<EnumRights> to a enumrights[],
this is done through the .ToArray() method.
Do this when you save your items in the viewstaet. When you load your
viewstaet you can create a new List<EnumRights> by using the
MyEnumRights = new List<EnumRights>((List<Enumrights>) viewstate["bleah"]);

The Constructor overload for a List<> accepts Ienumerable which a type[]
implements so this works. This should solve all of your serialization
problems. Worst case scenario - you may have to, assuming your enums have
values, convert it to an array of integers - but I don't think you have to do
this.



"Michael Tkachev" wrote:

Quote:
Take the "Page" property and there you can find Session

"Class" <NoSpam@Class> wrote in message
news:u0IHW7jOHHA.4100 (AT) TK2MSFTNGP04 (DOT) phx.gbl...
Hi Michael,

Thanks for your response.

Your class must be serializible. Or use Session instead of ViewState.

Which class do you mean, that needs to be serializable?
The enum? or The List class?
The list is a generic .NET collection class which is serializable already,
right?
Session?? There is no Session object in a web custom control, what do you
mean??

Thanks,
Class

"Michael Tkachev" <m_tkachev (AT) hotmail (DOT) com> wrote in message
news:uqGLwsjOHHA.140 (AT) TK2MSFTNGP04 (DOT) phx.gbl...
Your class must be serializible. Or use Session instead of ViewState.

Sincerely yours,
Michael B. Tkachev.
m_tkachev (AT) hotmail (DOT) com

"Class" <NoSpam@Class> wrote in message
news:eOfpVChOHHA.2140 (AT) TK2MSFTNGP03 (DOT) phx.gbl...
Hi all,

I'm building a custom control. I would like that on the control you can
set some 'rights'
For that I have an enum:
public enum GroupRights

{
Group0 = 0,
Group1 = 1,
Group2 = 2,
Group3 = 3,
Group4 = 4,
Group5 = 5,
}

In design time I want to set these right (can be multiple rights at the
same time)
So I put them in a generic list:

[Category("Rights")]
[DefaultValue("")]
[Localizable(true)]
[Bindable(true)]
public List<GroupRights> ControlRights
{
get
{
List<GroupRights> temp = (List<GroupRights>)ViewState["ControlRights"];
return ((object)temp == null) ? new List<GroupRights>() : temp;
}

set
{
ViewState["ControlRights"] = value;
}}

In desgin time I get the controls window with the GrouRights enum to
choose from.
But when I add one right in the collection window I get the message:

Cannot create an object of type
'System.Collections.Generic.List`1[[GroupRights, MaxControls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' from its string
representation '(Collection)' for the 'ControlRights' property.

Also the property can not be read out during runtime.

What am I doing wrong or forgetting?

tia,

Class











Reply With Quote
  #6  
Old   
Class
 
Posts: n/a

Default Re: Collection Property in web custom control - 01-22-2007 , 04:22 AM



Hi Nathaniel,

Thank you for your response.
When I try your suggestion and I try to add a right in the colleciton
Editor:
'Unable to cast object of type
'System.Collections.Generic.List`1[GroupRights]' to type
'System.Collections.Generic.List`1[GroupRights]''

This is the code I have now:
public List<GroupRights> Rights
{
get
{
if (ViewState["Rights"] != null)
{
List<GroupRights> s = new
List<GroupRights>((IEnumerable<GroupRights>)ViewSt ate["Rights"]);
return ((s == null) ? new List<GroupRights>() : s);
}
else
{
return null;
}
}
set
{
if (value != null)
ViewState["Rights"] = value.ToArray();
else
{
List<GroupRights> s = new List<GroupRights>();
s.Add((GroupRights)1);
ViewState["LikMe"] = s;
}
}
}

Regards,
Maarten

"Nathaniel Greene" <Nathaniel.Greene (AT) community (DOT) nospam> wrote

Quote:
Whoa, Whoa, Whoa, Whoa.
Remember that a session should only be used to store information when this
information is stored on a "per" user basis. What if you have 30 of these
controls on a single web page and the user is browsing 2 different web
pages
at the same time ont he same site under the same session. That's 60
controls
overwriting each other.

Class, what is happening is the fact that you are trying to serialize
Enums.
Your first step should be to convert your List<EnumRights> to a
enumrights[],
this is done through the .ToArray() method.
Do this when you save your items in the viewstaet. When you load your
viewstaet you can create a new List<EnumRights> by using the
MyEnumRights = new List<EnumRights>((List<Enumrights>)
viewstate["bleah"]);

The Constructor overload for a List<> accepts Ienumerable which a type[]
implements so this works. This should solve all of your serialization
problems. Worst case scenario - you may have to, assuming your enums have
values, convert it to an array of integers - but I don't think you have to
do
this.



"Michael Tkachev" wrote:

Take the "Page" property and there you can find Session

"Class" <NoSpam@Class> wrote in message
news:u0IHW7jOHHA.4100 (AT) TK2MSFTNGP04 (DOT) phx.gbl...
Hi Michael,

Thanks for your response.

Your class must be serializible. Or use Session instead of ViewState.

Which class do you mean, that needs to be serializable?
The enum? or The List class?
The list is a generic .NET collection class which is serializable
already,
right?
Session?? There is no Session object in a web custom control, what do
you
mean??

Thanks,
Class

"Michael Tkachev" <m_tkachev (AT) hotmail (DOT) com> wrote in message
news:uqGLwsjOHHA.140 (AT) TK2MSFTNGP04 (DOT) phx.gbl...
Your class must be serializible. Or use Session instead of ViewState.

Sincerely yours,
Michael B. Tkachev.
m_tkachev (AT) hotmail (DOT) com

"Class" <NoSpam@Class> wrote in message
news:eOfpVChOHHA.2140 (AT) TK2MSFTNGP03 (DOT) phx.gbl...
Hi all,

I'm building a custom control. I would like that on the control you
can
set some 'rights'
For that I have an enum:
public enum GroupRights

{
Group0 = 0,
Group1 = 1,
Group2 = 2,
Group3 = 3,
Group4 = 4,
Group5 = 5,
}

In design time I want to set these right (can be multiple rights at
the
same time)
So I put them in a generic list:

[Category("Rights")]
[DefaultValue("")]
[Localizable(true)]
[Bindable(true)]
public List<GroupRights> ControlRights
{
get
{
List<GroupRights> temp =
(List<GroupRights>)ViewState["ControlRights"];
return ((object)temp == null) ? new List<GroupRights>() : temp;
}

set
{
ViewState["ControlRights"] = value;
}}

In desgin time I get the controls window with the GrouRights enum to
choose from.
But when I add one right in the collection window I get the message:

Cannot create an object of type
'System.Collections.Generic.List`1[[GroupRights, MaxControls,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' from its
string
representation '(Collection)' for the 'ControlRights' property.

Also the property can not be read out during runtime.

What am I doing wrong or forgetting?

tia,

Class













Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.