如何使用web.config
轉換將域屬性包含在我的製作中web.config
?ASP.NET Web.Config轉換問題
我在我的基地web.config
以下。
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>
我曾嘗試使用我的web.prod.config
以下,但是當我發佈項目不添加屬性。
<authentication mode="Forms" xdt:Transform="Replace">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" domain=".mydomain.com" />
</authentication>
我想輸出爲以下內容。
<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" domain=".mydomain.com"/>
</authentication>
這與你的問題沒有任何關係,而是域名確實是'=「。mydomain.com」'而不是'=「mydomain.com」'...應該在那裏的時間段? – Kiril 2011-03-13 16:32:59
謝謝,是的,點應該在那裏,這將迎合子域,但很多謝謝。 – Kevin 2011-03-25 08:31:15