Hello , i need to report a simple error of type " Input string was not in a correct format." in changePassword.chtml which occurs when someone trying to change the password only when he use the arabic interface
this line particularly throw that error
<span class="help-block">@Html.Raw(L("PasswordChangeDontRememberMessage", "<a href="" + Url.Action("ForgotPassword", "Account") + "">" + L("ClickHere") + "</a>"))</span>
the problem is in arabic localization file <text name="PasswordChangeDontRememberMessage">إذا كنت لا تتذكر كلمة المرور {0} {</text> so you need to change it to be to fix the problem <text name="PasswordChangeDontRememberMessage">إذا كنت لا تتذكر كلمة المرور {0}.</text>
thank you
1 Answer(s)
-
0
Thanks, I added an issue to follow it: <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/186">https://github.com/aspnetzero/aspnet-zero/issues/186</a>