私のマシンで funnelweb ブログ アプリケーションを実行しようとしています。web.config ファイルでユーザー名とパスワードを設定しましたが、ログインしようとすると、「無効なユーザー名またはパスワードです。もう一度お試しください。」というメッセージが表示されます。
<authentication mode="Forms" >
<forms loginUrl="~/admin/login" timeout="40320" cookieless="UseCookies" defaultUrl="~/" name="FunnelWeb" slidingExpiration="true">
<credentials passwordFormat="Clear">
<user name="admin" password="admin"/>
</credentials>
</forms>
</authentication>