AbleCommerce Version: R3.
Control: LoginDialog
When debugging, clicking of "ForgotPasswordNextButton" does not get break. Just want to do simple break point walk through it event handler function "ForgotPasswordNextButton_Click()". However, why debugger does not trigger the break in the function?
The reason why I need to walk through this function is that ForgotPassword sends out empty Email to customers who request changing of password.
Very strange!! Anyone has any thought!
Thanks.
Next Button does not trigger ForgotPasswordNextButton_Click
Next Button does not trigger ForgotPasswordNextButton_Click
Fun programming!
Re: Next Button does not trigger ForgotPasswordNextButton_Click
Although I still did not understand why the break in ForgotPasswordNextButton_Click() function was not triggered, but I solved the missing ForgotPassword template problem. All templates are inside /App_Data/EmailTemplates/1/...
Still, anyone knows why the break was not triggered?
thanks,
Still, anyone knows why the break was not triggered?
thanks,
Fun programming!
Re: Next Button does not trigger ForgotPasswordNextButton_Click
One guess could be debugging and testing on different instances. For example when tried to debug your app may be in debug mode on bundled IIS which starts an instance on different ports while you were trying test via access the website on Local configured IIS. This happen to me when I configure website on local IIS but forget to set startup URL of VS project to external web server.
Re: Next Button does not trigger ForgotPasswordNextButton_Click
Thanks, Mazhar, that is the most likely answer I could have thought of. I was moving forward to continue on this project. Come back this issue late.
Fun programming!