Asp.net page with jquery 1.7.1 When I post it from an Android phone via an emulator in Eclipse the post without the http://www.somedomain.com/ works perfectly. If i include the http url it does not work. The insert into the database is fine with wfo_s.aspx but not with http://www.somedomain.com/wfo_s.aspx
If anyone can shed some light on why this is happening, I would really appreciate it. Thanks!
//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);