|
|
|
ใช้ ASP ดึงข้อมูลที่เป็นภาษาไทยจาก MySQL แล้วกลายเป็น ???? จะแก้ไขได้อย่างไรครับ? |
|
|
|
|
|
|
|
ลองใส่นี่หรือยัง
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
|
|
|
|
|
Date :
9 ส.ค. 2550 08:46:53 |
By :
อิอิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่แล้วครับไม่ได้ครับ คิดว่าน่าจะเป็นที่เวอร์ชั่นของ MySQL เพราะลองใช้เวอร์ชั่นเก่าๆ มันใช้ได้ปกติครับ
แต่ก็ยังสงสัยว่า ถ้าเราเปลี่ยนมาใช้ MySQL เวอร์ชั่นใหม่ๆ นี่จะทำอย่างไงดี ให้แสดงผลภาษาไทยได้ถูกต้อง
อันนี้ไม่ทราบจริงๆ ครับ ขอความกรุณาผู้รู้ทั้งหลายช่วยไขความกระจ่างด้วยครับว่ามันเกิดจากอะไร
|
|
|
|
|
Date :
10 ส.ค. 2550 10:37:50 |
By :
มนตรี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ของ php มัน query("Set Tis-620") ของ Asp คิวร่งายอ่า
|
|
|
|
|
Date :
22 ส.ค. 2550 17:02:39 |
By :
bomครหวัน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP & MySQL Tutorial</title>
</head>
<body>
<%
Dim Conn,strSQL,objRec
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER={MySQL ODBC 5.1 Driver}; SERVER=localhost;UID=root; " & _
"pwd=root;database=mydatabase;option=16384;"
strSQL = "SELECT * FROM customer "
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open strSQL, Conn, 1,3
%>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<%
While Not objRec.EOF
%>
<tr>
<td><div align="center"><%=objRec.Fields("CustomerID").Value%></div></td>
<td><%=objRec.Fields("Name").Value%></td>
<td><%=objRec.Fields("Email").Value%></td>
<td><div align="center"><%=objRec.Fields("CountryCode").Value%></div></td>
<td align="right"><%=objRec.Fields("Budget").Value%></td>
<td align="right"><%=objRec.Fields("Used").Value%></td>
</tr>
<%
objRec.MoveNext
Wend
%>
</table>
<%
objRec.Close()
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
</body>
</html>
ASP & MySQL
|
|
|
|
|
Date :
2009-05-29 07:14:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาไปลอง
<% session.codepage = "65001" %>
|
|
|
|
|
Date :
2011-03-22 16:22:48 |
By :
Sakuradrop |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|