Posted on: 12/11/2014 4:44:16 PM | Views : 557

The client wants their site to branch out to different languages, particularly French & Portuguese. There are a couple of issues I need help with setting pages in those respective languages.
I setup a content search control and whenever I try to search that includes special language characters it is throwing a potentially dangerous request error. I traced it to this line. :
find.aspx?search=Server.urlencode(server.htmlencode(<Search_String>)) I know the problem is the html encode, turns the special character to &#<Code>; and on the request it is treating that as code and throws the error. I am thinking of removing the html encode but before I do is there any benefit to encoding the search string like above?
My second, question is how do I let the browsers and search engines know that those pages are not English and their respective languages?

Go to the complete details ...