Announcement

Collapse
No announcement yet.

ASP: Searching Chinese Char's in Chinese.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • ASP: Searching Chinese Char's in Chinese.

    We have a database with over 100,000 entires; most of the entires are in English, but some of the fields are in Chinese.

    We have built a website where we can search the database and list them in a table.

    We can search in English, but when we search in Chinese, it will say that it cannot find anything, even though I know it is there (I know this because when I search in English, I can see the chinese word there as well).

    I did not build the website, but I will post some of the code anyway.

    Ok, here is the code to search for the Company Name:

    Code:
    if trim(request.QueryString("CompanyName"))<>"" then
    	if search="" then
    		search = search & " WHERE "
    	else
    		search = search & " AND "
    	end if
    	search = search & " CompanyName like '%" & trim(request.QueryString("CompanyName")) & "%' "
    end if

    The code at the top of the page is:

    Code:
    meta http-equiv="content-type" content="text/html; charset=gb2312"
    I have posted this at other programming websites, but of no help so far. Can anyone offer some help?

    Sorry for the bad grammer for my topic title, i only just realised it
    be free
Working...
X