I have a flex application which contains a registration form and after filling it an email is sent for account activation containing a URL for activating the account in the form of:
http://www.site.com/page.html#activation/username=xxxx&code=xxxxxxx.
In the flex application I parse the url and load the activation module and pass it the paramaters from the url. My problem is when I click this link from inside the mail body, the browser is launched with the url as http://www.site.com/page.html# only without the rest of it, both IE and FF does the same, the only way of accessing this url is by copying the url from the email and pasting it in the address bar.
Why does the browser removes everything after the # and how can I get over this?
Thanks in advance