我的 Web 应用程序通常会被安装以使用 applicationPoolIdentity:
<iis:WebAppPool Id="MyAppPool" Identity="applicationPoolIdentity" Name="MyAppPool"/>
但是我有一类用户想要使用特定的域用户,我通常会这样创作:
<util:User Id="MyUser" Name="[MY_USER]" Domain="[MY_DOMAIN]" Password="[MY_PASSWORD]" CreateUser="no"/>
<iis:WebAppPool Id="MyAppPool" Identity="other" User="MyUser" Name="MyAppPool" />
为此制作用户界面很简单,但是有没有办法在不编写自定义操作的Identity="applicationPoolIdentity"
情况下有条件地切换?Identity="other"