[Tips] managing user storage configuration Profile

Source: Internet
Author: User

Profile configuration in Web. config


< Profile > // Define the configuration (profile)
< Properties >
< Add Name = "Name" Allowanonymous = "True"   />
</ Properties >
</ Profile >

Manage the user's storage configuration information and pass in the username parameter so that all profiles can be managed
Use System. Web. profile. profilebase to get the specified user name and create an instance of the configuration file.

 
' The followingCodeExample: Create an instance of the custom configuration file object, set properties, and save the configuration file to the data source
Private   Sub Saveuserinfo () Sub Saveuserinfo ( Byval Username As   String )

DimObjprofileAsAspnetprofile. profilebase
Objprofile=System. Web. profile. profilebase. Create (username)
Objprofile. Item ("Name")=Txtbname. Text
Objprofile. Save ()

End sub

'The following code example creates an instance of a custom configuration file object and obtains attributes.
Private SubGetuserinfo ()SubGetuserinfo (ByvalUsernameAs String)

DimObjprofileAsAspnetprofile. profilebase
Objprofile=System. Web. profile. profilebase. Create (username,True)
Txtbname. Text=Objprofile. Item ("Name")

End sub

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.