jquery 1.7.1を使用したAsp.netページEclipseのエミュレーターを介してAndroid携帯から投稿すると、http://www.somedomain.com/なしの投稿は完全に機能します。httpのURLを含めると、機能しません。データベースへの挿入は、wfo_s.aspxでは問題ありませんが、http://www.somedomain.com/wfo_s.aspxでは問題ありません。
なぜこれが起こっているのかを誰かが明らかにすることができれば、私は本当に感謝しています。ありがとう!
//this does not work?
//$.post("http://www.somedomain.com/wfo_s.aspx", { the_User: theheatmap, conn: db_connection }, function (data) { });
//$.post("http://www.somedomain.com/wfo_s.aspx?the_User=" + theheatmap + "&conn=" + db_connection);
//this does work, why does the post to the url not work, page works fine
//$.post("wfo_s.aspx", { the_User: theheatmap, conn: db_connection }, function (data) { });
//$.post("wfo_s.aspx?the_User=" + theheatmap + "&conn=" + db_connection);