ASPNET user account

  • Thread starter Thread starter Joseph D. DeJohn
  • Start date Start date
J

Joseph D. DeJohn

"It says that Web applications run using the ASPNET user account. The
SQL database administrator will have to set up this account and grant it
permissions before your Web application will have access to a SQL database."

My question is: Is this account already setup? IF it is, are there any
special settings that I need to set in order for it to work? I know nothing
about this account or where it fits into the whole security scheme of
things. Any help would be much appreciated.
 
just tell your DB admin to add the ASPNET account to the database you want
to access via ASP.NET web forms.

Alternatively, you can open web.config and use impersonation via <identity>
tag
 
Back
Top