more info

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

<?xml version="1.0" encoding="utf-8"?>
<configuration>

<system.web>

<identity impersonate="true"/>
</system.web>

<location path="~/Maintenance">
<system.web>
<identity impersonate="false"/>
</system.web>
</location>
</configuration>

the above is the main parts of the web.config. ive tried with the tilde and
the without. the account continues to be NT AUTHORITY\NETWORK SERVICE
instead of when i go into the mainteance folder it should change to the
administrator account ( of which im logged in as )

any help would be greatly appreciated

thanks
 
The tilde does not apply in the config file. You need to use actual paths.
In this case, just drop the "~/".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top