We are using Ext.Net and we have run into an issue which on the surface seems quite trivial but in practice, it would appear, requires some inside knowledge.
We are implementing a sign up form and one of the fields is the email address which will be used to uniquely identify the user.
So when the user signs up, a query is made to the database to check if the email address already exists in the system. If the email exists then we check if the email has been activated or not. If it hasn't been activated, then we want to send a message back to the front end that we the email entered was an unactivated email address.
In that case we want to pop up a confirmation window which will ask the user if the wants to activate the account or not. What we are struggling with is when to pop up the confirmation window depending upon whether the email address is activated or not.
Can anyone provide any suggestion on how to do this?