標準の.htmlページから.aspxページにAJAXリクエストを送信しようとしています。これが実行できるかどうかを確認したいのですが、「ステータスコード:HTTP /1.1500内部サーバーエラー」が発生し続けます。aspxはこのように機能することを意図したものではありませんが、実行できると言われました。
私のJavascript:
function handleload(e) {
alert(req.responseText);
}
var req = new XMLHttpRequest();
req.open('POST', 'helloworld.aspx' , true);
req.addEventListener('error', function(e) {console.log(e)}, false);
req.addEventListener('load', handleload, false);
req.send();
私のaspxページ:
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="helloworld.aspx.cs" Inherits="helloworld" %>
私のaspx.csページ:
using System;
public partial class helloworld : System.Web.UI.Page
{
public void Page_Load()
{
Response.ContentType = 'text/html';
Response.Write("Hello World!")
Response.End();
}
}