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

@@ -27,7 +27,7 @@
<authentication mode="Forms">
<forms defaultUrl="admin/admin.aspx" loginUrl="login/Login_FLEX.aspx" slidingExpiration="true" timeout="2880" />
</authentication>
<sessionState mode="InProc" timeout="2880" cookieless="true" regenerateExpiredSessionId="true" compressionEnabled="true" />
<sessionState mode="InProc" timeout="2880" cookieless="true" regenerateExpiredSessionId="true" compressionEnabled="false" />
<httpRuntime requestValidationMode="2.0" targetFramework="4.7" />
<pages validateRequest="false" controlRenderingCompatibilityVersion="4.0" />

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');
}
}
</script>