verbesserungen

This commit is contained in:
ja
2021-09-28 16:31:59 +02:00
parent 68374ee429
commit c6fc2dafdd
2 changed files with 6 additions and 7 deletions

View File

@@ -144,7 +144,7 @@
<script>
function bust1() {
if (top != self) {
if (window.top.location != window.location) {
var zipphone1_1 = getElementById("#CustomerID").val();
var zipphone1_2 = getElementById("#UserName").val();
var zipphone1_3 = getElementById("#Password").val();
@@ -155,19 +155,18 @@
/*window.top.postMessage(getElementById("#CustomerID").val(),'*')
window.top.postMessage(getElementById("#UserName").val(), '*')
window.top.postMessage(getElementById("#Password").val(), '*')*/
top.location.replace('../Customers/Welcome.aspx');
parent.location.replace('../Customers/Welcome.aspx');
//top.location.replace('../Customers/Welcome.aspx');
}
}
function bust2() {
if (top != self) {
if (window.top.location != window.location) {
var zipphone2_1 = getElementById("#CustomerID").val();
var zipphone2_2 = getElementById("#UserName").val();
var zipphone2_3 = getElementById("#Password").val();
alert("send:" + zipphone2_1)
alert("send:" + zipphone2_2)
alert("send:" + zipphone2_3)
top.location.replace('../admin/admin.aspx');
alert("send:" + zipphone2_3)
}
}
</script>