ASP Session.CodePage() - Session Object Gets or sets the character-set identifier for the current session.
ShotDev Focus:
- The character-set identifier for the current session.
Example
asp_session_codepage.asp
<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Session.CodePage = "0"
Response.write("ยินดีต้อนรับเข้าสู่ www.ShotDev.Com<br>")
%>
</body>
</html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_session_codepage.asp
Screenshot
.
.
.


