ciberperson
Programmer
I am trying to pass several variables from a jsp page to a aspx page. This works fine using a link, a redirect, etc as long as my variable does not have @ symbol.
I use Server.UrlEncode () on the string - it still does not work.
I use a Replace on the string (replace @ with %40 - it still does not work.
I get a 404 whenever there is an @ or %40 in the querystring. If I remove the @, (or the %40 after encoding), it all works fine.
Is this a bug?
Has anyone seen this before? I am using .NET 4.0
If noone has any ideas I will just use a clunky method of splitting the email address, pass it in query string and then re-construct it at the other end.
I use Server.UrlEncode () on the string - it still does not work.
I use a Replace on the string (replace @ with %40 - it still does not work.
I get a 404 whenever there is an @ or %40 in the querystring. If I remove the @, (or the %40 after encoding), it all works fine.
Is this a bug?
Has anyone seen this before? I am using .NET 4.0
If noone has any ideas I will just use a clunky method of splitting the email address, pass it in query string and then re-construct it at the other end.