Berichtigung Abfrage Querystrings
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head runat="server">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
|
||||
<title></title>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8" />
|
||||
|
||||
@@ -15,7 +15,18 @@
|
||||
<link rel="shortcut icon" href="../images/Icons/favicon/favicon.ico" />
|
||||
<!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> -->
|
||||
<script src="js/netzwerk.js" type="text/javascript"></script>
|
||||
<style>
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
/* display: none; <- Crashes Chrome on hover */
|
||||
-webkit-appearance: none;
|
||||
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
||||
}
|
||||
|
||||
input[type=number] {
|
||||
-moz-appearance:textfield; /* Firefox */
|
||||
}
|
||||
</style>
|
||||
<!-- Bootstrap CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
|
||||
<link rel="stylesheet" type="text/css" href="../css/main.css" />
|
||||
@@ -58,7 +69,7 @@
|
||||
<div class="col">
|
||||
<label id="lbl_Lieferdat">Lieferdatum:</label>
|
||||
|
||||
<input id="Txt_Lieferdat" readonly="readonly" runat="server" style="margin-left: 13px" /></div>
|
||||
<input id="txt_Lieferdat" readonly="readonly" runat="server" style="margin-left: 13px" /></div>
|
||||
</div>
|
||||
<div class="row" style="height: 20px">
|
||||
</div>
|
||||
@@ -68,7 +79,7 @@
|
||||
</div>
|
||||
<div class="col">
|
||||
<label id="lbl_Pin">Pin:</label>
|
||||
<input id="txt_Pin" readonly="readonly" type="number" runat="server" style="width: 85px; margin-left: 82px" value="Text" />
|
||||
<input id="txt_Pin" readonly="readonly" type="number" runat="server" style="width: 105px; margin-left: 82px" value="Text" />
|
||||
</div>
|
||||
<div class="col">
|
||||
<label id="lbl_Vermerk">Vermerk:</label>
|
||||
@@ -83,7 +94,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label id="lbl_Ersatzkarte">Gueltig Bis:</label>
|
||||
<label id="lbl_Ersatzkarte">Ersatzkarte:</label>
|
||||
<input id="cb_Ersatzkarte" readonly="readonly" runat="server" type="checkbox"/>
|
||||
</div>
|
||||
<div class="row" style="height: 40px;"></div>
|
||||
@@ -149,7 +160,7 @@
|
||||
document.getElementById('<%=txt_Pin.ClientID%>').setAttribute('value', result[i]["3"]);
|
||||
document.getElementById('<%=txt_Vermerk.ClientID%>').setAttribute('value', result[i]["4"]);
|
||||
document.getElementById('<%=txt_GueltigBis.ClientID%>').setAttribute('value', result[i]["5"]);
|
||||
document.getElementById('<%=cb_Ersatzkarte.ClientID%>').setAttribute('value', result[i]["6"]);
|
||||
document.getElementById('<%=cb_Ersatzkarte.ClientID%>').setAttribute('checked', result[i]["6"]);
|
||||
}
|
||||
}
|
||||
//renderTable(data.d);
|
||||
|
||||
Reference in New Issue
Block a user