Server.Form and incorrect words
-
Hi, I have an ordinal HTML file. I want to get some form variables on my ASPX code, OK, and it works perfectly, setting the action of the HTML form to my ASPX page and submitting it, then, on my ASPX page, I can get the variables thought the Request.Form["varName"] method. The problem begins when I have some characters with accent, like a city name here in Brazil, e.g.: 'São Paulo'. I just get 'So Paulo' in my ASPX page. I've tried UrlDecode, but without any help. Does anybody know any hint that could help me on this case? Thanks in advance guys... bb
-
Hi, I have an ordinal HTML file. I want to get some form variables on my ASPX code, OK, and it works perfectly, setting the action of the HTML form to my ASPX page and submitting it, then, on my ASPX page, I can get the variables thought the Request.Form["varName"] method. The problem begins when I have some characters with accent, like a city name here in Brazil, e.g.: 'São Paulo'. I just get 'So Paulo' in my ASPX page. I've tried UrlDecode, but without any help. Does anybody know any hint that could help me on this case? Thanks in advance guys... bb
-
what is the problem, if problem is while saving to database then replace the ' (single quote) with '' (two single quotes) -----