G
Guest
Hi All,
I try to define profile in web.config as below
<anonymousIdentification enabled="true"/>
<profile enabled="true">
<properties>
<add name="logon" type="string" allowAnonymous="true" />
<add name="rule" type="string" allowAnonymous="true"/>
</properties>
</profile>
This is for store some temporary profile only. Then in web page I would like
to store some value in profile but I have problem to use it by call
Profile.logon ->error logon is not member of Profile or Profile("logon")
->error system.web.profile is a namespace and cannot be use as an expression.
Any idea? Thanks for any advise.
Madison
I try to define profile in web.config as below
<anonymousIdentification enabled="true"/>
<profile enabled="true">
<properties>
<add name="logon" type="string" allowAnonymous="true" />
<add name="rule" type="string" allowAnonymous="true"/>
</properties>
</profile>
This is for store some temporary profile only. Then in web page I would like
to store some value in profile but I have problem to use it by call
Profile.logon ->error logon is not member of Profile or Profile("logon")
->error system.web.profile is a namespace and cannot be use as an expression.
Any idea? Thanks for any advise.
Madison