Änderungen generation hashratetest server
This commit is contained in:
@@ -150,7 +150,7 @@
|
||||
natplaceholder.textContent = Nat
|
||||
addHeader()
|
||||
|
||||
addNewRow()
|
||||
addNewRow("7544514114")
|
||||
}
|
||||
function TableRow_Click_M(Nat,Kennzeichen) {
|
||||
let Speditionslabel = document.getElementById("<%=lbl_sped_Placeholder_M.ClientID%>")
|
||||
@@ -164,27 +164,28 @@
|
||||
}
|
||||
function addheader() {
|
||||
let table = document.getElementById("<%=tbl_mainpage.ClientID%>");
|
||||
var tr = table.insertRow(-1);
|
||||
var td = tr.insertCell();
|
||||
let tr = table.insertRow(-1);
|
||||
let td = tr.insertCell();
|
||||
|
||||
td.innerHTML.textContent = "SDL-Nr";
|
||||
|
||||
td = tr.insertCell();
|
||||
td = tr.insertCell();
|
||||
td.innerHTML.textContent = "Bezeichnung";
|
||||
|
||||
td = tr.insertCell();
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "Gültig Bis";
|
||||
|
||||
td = tr.insertCell();
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "Karten-Nummer";
|
||||
}
|
||||
function addheader_m() {
|
||||
let table = document.getElementById("<%=tbl_mainpage_M.ClientID%>");
|
||||
let tr = table.insertRow(-1);
|
||||
let td = tr.insertCell();
|
||||
td.innerHTML.textContent = "SDL-Nr";
|
||||
td.innerHTML = "SDL-Nr";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML.textContent = "Bezeichnung";
|
||||
td.innerHTML = "Bezeichnung";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "Gültig Bis";
|
||||
@@ -192,36 +193,37 @@
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "Karten-Nummer";
|
||||
}
|
||||
function addNewRow() {
|
||||
function addNewRow(SDLNr) {
|
||||
let table = document.getElementById("<%=tbl_mainpage.ClientID%>");
|
||||
|
||||
let tr = table.insertRow();
|
||||
let td = tr.insertCell();
|
||||
td.innerHTML = SDLNr;
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = bez;
|
||||
let tr = table.insertRow();
|
||||
let td = tr.insertCell();
|
||||
td.innerHTML = SDLNr;
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = GueltigBis;
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "Diesel";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = Kartnr;
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "2025";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "56855541454654";
|
||||
}
|
||||
function addNewRow_M() {
|
||||
let table = document.getElementById("<%=tbl_mainpage_M.ClientID%>");
|
||||
let tr = table.insertRow(-1);
|
||||
let td = tr.insertCell();
|
||||
td.innerHTML = "a";
|
||||
let table = document.getElementById("<%=tbl_mainpage_M.ClientID%>");
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "b";
|
||||
let tr = table.insertRow(-1);
|
||||
let td = tr.insertCell();
|
||||
td.innerHTML = "a";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "c";
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "b";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "d";
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "c";
|
||||
|
||||
td = tr.insertCell();
|
||||
td.innerHTML = "d";
|
||||
}
|
||||
</script>
|
||||
</asp:Content>
|
||||
Reference in New Issue
Block a user