first commit

This commit is contained in:
2025-02-20 15:08:30 +08:00
commit b40b82d812
87 changed files with 86078 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="downCookie.aspx.cs" Inherits="downCookie" %>
<script type="text/javascript">
window.onload = function () {
// create listener
function receiveMessage(e) {
if (e.data == "cookie") {
parent.postMessage(document.cookie, "*");
} else if (e.data.indexOf("clear")!=-1) {
document.cookie = "fileDownload=; expires=" + new Date(1000).toUTCString() + "; path=" + settings.cookiePath;
}
}
window.addEventListener('message', receiveMessage);
// call parent
//parent.postMessage("GetWhiteLabel", "*");
}
</script>