1

PHP で VBScript を実行する方法はありますか - Windows マシンで Apache サーバーを使用しています

PHP Powered Apache Server でこの単純な VBScript を実行しようとしていますが、実行できません。

<html>
<head><title>Hello</title>
<script type="text/vbscript">
Sub submit_btn_onclick()
    document.write("<h1>I <3 Web Programming!</h1>")
    usr = document.getElementById("user_name").value
    If usr <> "" Then

        output = document.getElementById("user_name").value
    else
        output = "Error!"
    End If
    document.getElementById("output").innerHTML = output
End Sub
</script>
</head>
<body>
    <input type="text" name="user_name" id="user_name" maxsize="10">
    <input type="button" name="submit_btn" id="submit_btn" value="">
    <div id="output"></div>
</body>
</html>

前もって感謝します!

4

0 に答える 0