
Signature
Göran Andersson
_____
http://www.guffa.com
then HttpContext.Current.Profile.Item("FullName") =
my_sqldatareader("fullname")
is working, thank you
Is there an easier, short hand, way to reference the items?

Signature
Share The Knowledge. I need all the help I can get and so do you!
> > I'm attempting to reference a profile item i set in a class
> > for some reason profile.myitem will be seen in a code file for a page, but
[quoted text clipped - 8 lines]
> Use HttpContext.Current.Profile to reference the profile in the current
> context.
Göran Andersson - 10 Jul 2007 00:57 GMT
> then HttpContext.Current.Profile.Item("FullName") =
> my_sqldatareader("fullname")
> is working, thank you
> Is there an easier, short hand, way to reference the items?
You can make a reference to the profile:
Dim p As ProfileBase = HttpContext.Current.Profile
Then use the reference to access the profile:
p.Item("FullName") = my_sqldatareader("fullname")

Signature
Göran Andersson
_____
http://www.guffa.com