Please explain ApplicationID of aspnetdb

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Could someone please explain the relationship between ApplicationID and a
Web site? For example, what and when generates application ID?
Any pointers to on-line docs would also be appreciated.

Thanks,
Dan
 
<membership defaultProvider="AccessMembershipProvider">
<providers>
<add name="AccessMembershipProvider"
type="Samples.AccessProviders.AccessMembershipProvider,
AccessProvider"
connectionStringName="AccessFileName"
enablePasswordRetrieval="false"
enablePasswordReset="false" requiresUniqueEmail="false"
requiresQuestionAndAnswer="false"
minRequiredPasswordLength="1"
minRequiredNonalphanumericCharacters="0"
applicationName="SampleSite" hashAlgorithmType="SHA1"
passwordFormat="Hashed"/>
</providers>
</membership>

I believe the ApplicationId is just a primary key for a distinct
"applicationName" in the config file.

"SampleSite" from the above entry.
 
ApplicationID is a unique id for a website (iis site path). the storedproc
adds a row if it doesn't exist during the lookup.


-- bruce (sqlwork.com)
 
Back
Top