<html>
<head>
<script>
function getSize()
{
var myFSO = new ActiveXObject("Scripting.FileSystemObject");
var filepath = document.upload.file.value;
var thefile = myFSO.getFile(filepath);
var size = thefile.size;
var type = thefile.type;
document.getElementById('size').innerHTML = 'ขนาดไฟล์ : '+size+' Bytes';
document.getElementById('type').innerHTML = ชนิดไฟล์ : '+type;
}
</script>
</head>
<body>
<form name="upload">
<input type="file" name="file">
<input type="button" value="Size?" onClick="getSize();"><br>
<span id="size"></span><br>
<span id="type"></span>
</form>
</body>
</html>
ลอง run บนเครื่องโดยไม่ผ่านโปรแกรม appserv แล้วไม่มีปัญหาอะไรครับ
แต่พอลอง run ผ่าน appserv หรือลอง run บน host จริงกลับใช้ไม่ได้อ่ะครับ รบกวนผู้รู้ช่วยแนะนำทีครับ