Ask a Question related to ASP.NET General, Design and Development.
-
bruce barker #1
Re: The password for the ASPNET account
this set the account aspnet_wp.exe will run under, and thus the default
account for all asp.net pages. you have three options
1) use the local system account "userName=system"
2) use the default local account generated by asp.net filter
"userName=machine". you supply a password, or have one that will be
generated. the password is only generated once and is stored.
3) use a user supplied account and password.
"Abhishek Srivastava" <abhishek@nospam.net> wrote in message
news:OxbDrunWDHA.1536@TK2MSFTNGP11.phx.gbl...> Hello All,
>
> I want to understand what does the following line mean in the
> machine.config file
>
> <processModel enable="true" userName="machine" password="AutoGenerate"
> />
>
> What does the AutoGenerate mean in the password attribute? Is the
> password generated everytime ?
>
> Otherwise how does IIS know which password is to be supplied when
> running an aspx page?
>
> thanks for your help.
>
> regards,
> Abhishek.
>
bruce barker Guest
-
ASPNET account locking out
We have in the last few months been having an issue with the ASPNET account on our production web server locking out. It's been sporadic, on... -
Using LogonUser API in ASP.net with an account other than ASPNet account
I am trying to use the LogonUser API function from ASP.Net. This works fine on my machine which is Windows XP but fails with error code 1314 on... -
ASPNET Account
I needed to go to my user accounts when I discovered this aspnet machine account.I didn't know where it came from so I deleted the account. Now I... -
ASPNET Account not created
I am running Windows XP Pro, I have IIS installed and I am developing an asp.net application (VS2002). I didn't have an ASPNET account (system came... -
ASPNET account on Win2k3
Hello, I have the following problem: I installed a web app on IIS 6 in Win2k3 EE. Now, whenever I try to log on to my SQL Service, I get Login... -
Scott Allen #2
Re: The password for the ASPNET account
Hi Abhishek:
The password is not generated everytime. This attribute is just a>
>What does the AutoGenerate mean in the password attribute? Is the
>password generated everytime ?
>
signal to get the password from the local system authority (lsa).
More detail here:
[url]http://msdn.microsoft.com/vstudio/using/building/web/default.aspx?pull=/library/en-us/dnnetsec/html/SecNetHT01.asp[/url]
--
Scott
--
Scott
Scott Allen Guest



Reply With Quote

