ログインしたユーザーの場合は が表示されwelcome, [name]
、それ以外の場合は が表示されますregister link
。
aspdotnet
storefront の使用- 次の例では、 welcome,
(ログイン名なし) とregister link
?の両方が表示されます。うまく動作しないようです。
<xsl:when test="/root/System/CustomerFirstName!=''">
Welcome, <a href='/account.aspx'><xsl:value-of select="/root/System/CustomerFirstName" disable-output-escaping="yes" /></a>
</xsl:when>
<xsl:otherwise>
<a href='createaccount.aspx?checkout=False' class='register'>
Register </a>
</xsl:otherwise>
</xsl:choose>
ここで30ページもフォローしましたが、役に立ちませんでした。