【ASP.NET(C#)】ユーザの偽装について
バージョン:ASP.NET 3.5
ユーザを偽装するには、ASP.NET の Web.config にsystem.web 要素に identityを設定する。
<configuration> <system.web> <identity impersonate="true"> </identity> </system.web> </configuration>
または、ユーザ名とパスワードを固定することも可能。
<configuration> <system.web> <identity impersonate="true" password="pass" username="name"> </identity> </system.web> </configuration>
ファイルの存在チェックなどアクセス権が絡むときに使用する。
ASP.NET の偽装
http://msdn.microsoft.com/ja-jp/library/xh507fc5(VS.80).aspx