I am working on a site that was built based on the community template. It is using the Member pages linked to a member list. The user who have user names are ok, but those who use email address as user name get a 404. It is because the @ sign in the URL. The URLs are generated by this: <a href="<%# HTMLEncode(GetMemberProfileUrl(Eval("UserName"))) %>">
It looks like the out of the box logic. It is not working properly. What is the best way to correct this?
I was considering changing to use UserID and pull the users by that. I want the users to be able to edit their own info also.
URL encode it before you html encode it. You're encoding the @ when you should be encoding %40.
Please, sign in to be able to submit a new answer.