i send parameter usinge Response.Redirect() to anotherpage
Response.Redirect(String.Format(“~/mypage.aspx?value=” + myvalue))
but myvalue has some invalid characters like ö,ü and i can’t receive the parameter correct.
has anyone idea, how can i get it correct?
If you do a server.UrlEncode it should take care of it for you. i.e.
Then before you consume it on the other side you would have to decode it.