Datum bleibt nach Buttonklick bestehen während Postback

This commit is contained in:
ja
2021-09-22 09:48:23 +02:00
parent 2eb0af85a0
commit 0cc7b8864f
6 changed files with 45 additions and 49 deletions

View File

@@ -66,26 +66,7 @@
<link rel="stylesheet" type="text/css" href="../css/main.css">
<![endif]-->
<script type = "text/javascript">
function goBack()
{
window.history.back()
}
</script>
<script>
function bust1() {
if (top != self)
setInterval("top.location.replace('../Kundenseite.aspx')", 1);
}
function bust2() {
if (top != self)
setInterval("top.location.replace('../admin/admin.aspx')", 1);
}
function bust3() {
if (top != self)
setInterval("top.location.replace('../newpageJulius_Sidebar.aspx')", 1);
}
</script>
<link rel="stylesheet" type="text/css" href="../css/login/LoggedIn.css"/>
</head>
@@ -107,7 +88,7 @@
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/>
</symbol>
</svg>
<asp:LoginStatus ID="LoginStatus1" runat="server" LogoutAction="Redirect" ValidateRequestMode="Enabled"/>
<tr>
<td align="right">
<td>
@@ -115,10 +96,10 @@
<svg class="bi shrink-0 me-2" width="3.125vw" height="1.875vh" role="img" aria-label="Success:"><use xlink:href="#check-circle-fill"/></svg>
</td>
<tr> <td>
<asp:Label ID="LBL2" runat="server">Willkommen zurück: </asp:Label>
<asp:Label ID="LBL2" runat="server">Willkommen zurück: <%=Login1.UserName %> </asp:Label>
</td>
<td>
<asp:LoginName ID="LoginName1" runat="server" />
</td>
</tr>
</tr>
@@ -129,7 +110,7 @@
</tr>
<tr>
<td align="left" colspan="2">
<br/> <asp:Button id="LogoutButton" runat="server" CommandName="Logout" Text="Abmelden" target="frame" OnClientClick="bust3()"/>
<br/> <asp:Button id="LogoutButton" runat="server"/>
</td>
</tr>
@@ -138,6 +119,26 @@
</asp:Login>
</form>
</div>
<script type = "text/javascript">
function goBack() {
window.history.back()
}
</script>
<script>
function bust1() {
if (top != self)
setInterval("top.location.replace('../Kundenseite.aspx')", 1);
}
function bust2() {
if (top != self)
setInterval("top.location.replace('../admin/admin.aspx')", 1);
}
function bust3() {
if (top != self)
setInterval("top.location.replace('../newpageJulius_Sidebar.aspx')", 1);
}
</script>
</body>
</html>