Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Please explain ApplicationID of aspnetdb

Reply
Thread Tools

Please explain ApplicationID of aspnetdb

 
 
Dan
Guest
Posts: n/a
 
      03-17-2008
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


 
Reply With Quote
 
 
 
 
sloan
Guest
Posts: n/a
 
      03-17-2008
<membership defaultProvider="AccessMembershipProvider">
<providers>
<add name="AccessMembershipProvider"
type="Samples.AccessProviders.AccessMembershipProv ider,
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.



"Dan" <> wrote in message
news:...
> 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
>



 
Reply With Quote
 
 
 
 
bruce barker
Guest
Posts: n/a
 
      03-17-2008
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)


"Dan" wrote:

> 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
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ApplicationId JJ ASP .Net 6 09-15-2006 01:34 PM
ApplicationID =?Utf-8?B?R2lvdmFubmk=?= ASP .Net 1 06-19-2006 06:57 PM
Couple ASP.NET 2.0 Questions - Roles + ApplicationID Spam Catcher ASP .Net 2 05-21-2006 03:05 PM
Use of ApplicationID vs Profile attribute as a foreign key to a ClientID ANON ASP .Net 0 03-14-2006 10:45 PM
how to retrive Current ApplicationId =?Utf-8?B?VGRhclRkYXI=?= ASP .Net 1 01-26-2006 02:36 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57