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" />
|
||||
@@ -25,7 +36,7 @@
|
||||
<!-- <link rel="stylesheet" type="text/css" href="../css/style.css"/>-->
|
||||
<link rel="stylesheet" type="text/css" href="../css/Customers/MasterpageCustomers.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../css/Customers/LKWs.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../css/navbarsidebar2.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../css/navbarsidebar2.css" />
|
||||
</head>
|
||||
<body>
|
||||
<form id="form1" runat="server" style="width:875px;height:250px">
|
||||
|
||||
@@ -5,15 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -76,6 +77,7 @@ Partial Class Customers_Default3
|
||||
Dim list As List(Of String) = New List(Of String)
|
||||
Dim list2 As List(Of VERAG_PROG_ALLGEMEIN.cSDL) = VERAG_PROG_ALLGEMEIN.cSDL.GET_LIST_WEB_LKW(Integer.Parse(Kdnrtext), Kennzeichen)
|
||||
Dim listdetails As New List(Of List(Of String))
|
||||
|
||||
For Each l2 In list2
|
||||
Dim strtempbestelltam As String = String.Empty
|
||||
Dim strtempKartenNr As String = String.Empty
|
||||
@@ -132,7 +134,7 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempRetourniert)
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") And String.Equals(strtempGestohlen, "False") And String.Equals(strtempGesperrt, "False") And String.Equals(strtempDefekt, "False") And String.Equals(strtempArchivt, "False") Then
|
||||
If String.Equals(strtempVerloren, "False") And String.Equals(strtempGestohlen, "False") And String.Equals(strtempGesperrt, "False") And String.Equals(strtempDefekt, "False") And String.Equals(strtempArchivt, "False") AndAlso l2.KartenNr = CardNr Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
Next
|
||||
@@ -204,7 +206,8 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempOBUID)
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempRetourniert)
|
||||
If String.Equals(strtempVerloren, "False") And String.Equals(strtempGestohlen, "False") And String.Equals(strtempGesperrt, "False") And String.Equals(strtempDefekt, "False") And String.Equals(strtempArchivt, "False") Then
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") And String.Equals(strtempGestohlen, "False") And String.Equals(strtempGesperrt, "False") And String.Equals(strtempDefekt, "False") And String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
Next
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -5,17 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -26,6 +25,7 @@ Partial Class Customers_Default3
|
||||
Page.MaintainScrollPositionOnPostBack = False
|
||||
End If
|
||||
End Sub
|
||||
|
||||
<Serializable>
|
||||
Public Class FormattedList
|
||||
Private _sEcho As String
|
||||
@@ -140,6 +140,7 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempErsatztelepass)
|
||||
list.Add(strtempRetourniert)
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
@@ -217,6 +218,7 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempErsatztelepass)
|
||||
list_M.Add(strtempRetourniert)
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") And String.Equals(strtempGestohlen, "False") And String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") And String.Equals(strtempArchivt, "False") Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -5,17 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -26,6 +25,7 @@ Partial Class Customers_Default3
|
||||
Page.MaintainScrollPositionOnPostBack = False
|
||||
End If
|
||||
End Sub
|
||||
|
||||
<Serializable>
|
||||
Public Class FormattedList
|
||||
Private _sEcho As String
|
||||
@@ -133,7 +133,8 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempTELEPASS_Nr)
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempRetourniert)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
Next
|
||||
@@ -210,7 +211,8 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempErsatzTelepass)
|
||||
list_M.Add(strtempRetourniert)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -5,17 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -129,7 +128,7 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempRetourniert)
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
Next
|
||||
@@ -197,7 +196,7 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempRetourniert)
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
Next
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -5,17 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -128,6 +127,7 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempKartNr)
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempRetourniert)
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
@@ -195,6 +195,7 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempKartNr)
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempRetourniert)
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -4,17 +4,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
|
||||
@@ -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" />
|
||||
@@ -98,16 +109,7 @@
|
||||
<input id="txt_GueltigBis" readonly="readonly" runat="server" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="height: 40px;"></div>
|
||||
<div id="checkboxes">
|
||||
<asp:CheckBoxList runat="server" Enabled="false">
|
||||
<asp:ListItem Text="Verloren" Value="Verloren" Selected="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Gestohlen" Value="Gestohlen" Enabled="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Gesperrt" Value="Gesperrt" Enabled="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Defekt" Value="Defekt" Enabled="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Archiviert" Value="Archiviert" Enabled="false"></asp:ListItem>
|
||||
</asp:CheckBoxList>
|
||||
</div>
|
||||
<div class="row" style="height: 40px;"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,15 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -138,7 +139,7 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempRetourniert)
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
Next
|
||||
@@ -216,7 +217,8 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempPIN)
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempRetourniert)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
Next
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -5,17 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -132,6 +131,7 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempErsatzkarte)
|
||||
list.Add(strtempabgemeldet)
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
@@ -203,6 +203,7 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempErsatzkarte)
|
||||
list_M.Add(strtempabgemeldet)
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
|
||||
@@ -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" />
|
||||
@@ -98,24 +109,23 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="col">
|
||||
<label id="lbl_Vermerk">Vermerk:</label>
|
||||
<input id="txt_Vermerk" readonly="readonly" runat="server" style="width: 45px" value="Text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<label id="lbl_GueltigBis">Gueltig Bis:</label>
|
||||
<input id="GueltigBis" readonly="readonly" runat="server" />
|
||||
<input id="txt_GueltigBis" readonly="readonly" type="date" runat="server" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="height: 40px;"></div>
|
||||
<div id="checkboxes">
|
||||
<asp:CheckBoxList runat="server" Enabled="false">
|
||||
<asp:ListItem Text="Verloren" Value="Verloren" Selected="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Gestohlen" Value="Verloren" Enabled="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Gesperrt" Value="Verloren" Enabled="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Defekt" Value="Verloren" Enabled="false"></asp:ListItem>
|
||||
<asp:ListItem Text="Archiviert" Value="Verloren" Enabled="false"></asp:ListItem>
|
||||
</asp:CheckBoxList>
|
||||
</div>
|
||||
<div class="row" style="height: 40px;"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -168,9 +178,9 @@
|
||||
document.getElementById('<%=txt_Kategorie.ClientID%>').setAttribute('value', result[i]["2"]);
|
||||
document.getElementById('<%=txt_Vertrabschldat.ClientID%>').setAttribute('value', result[i]["3"]);
|
||||
document.getElementById('<%=txt_Status.ClientID%>').setAttribute('value', result[i]["4"]);
|
||||
document.getElementById('<%=txt_Schadstoffklasse.ClientID%>').setAttribute('value', result[i]["5"]);
|
||||
document.getElementById('<%=cbx_Ersatzkarte.ClientID%>').setAttribute('checked', result[i]["4"]);
|
||||
document.getElementById('<%=cbx_Abgemeldet.ClientID%>').setAttribute('checked', result[i]["5"]);
|
||||
document.getElementById('<%=txt_Schadstoffklasse.ClientID%>').setAttribute('value', result[i]["5"]);
|
||||
document.getElementById('<%=txt_Vermerk.ClientID%>').setAttribute('value', result[i]["5"]);
|
||||
document.getElementById('<%=txt_GueltigBis.ClientID%>').setAttribute('value', result[i]["6"]);
|
||||
}
|
||||
}
|
||||
//renderTable(data.d);
|
||||
|
||||
@@ -5,17 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
|
||||
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -141,7 +140,8 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempSchadstoffklasse)
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempGueltigBis)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
Next
|
||||
@@ -221,7 +221,8 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempSchadstoffklasse)
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempGueltigBis)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
Next
|
||||
|
||||
@@ -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" />
|
||||
|
||||
@@ -5,15 +5,16 @@ Imports System.Web.Services
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Shared Kdnrtext As String = String.Empty
|
||||
Shared CardNr As String = String.Empty
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs) Handles Me.Load
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
End If
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
|
||||
If Page.IsPostBack = True Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
|
||||
Kdnrtext = Request.QueryString("CustomerID").ToString
|
||||
CardNr = Request.QueryString("CardNo").ToString
|
||||
End If
|
||||
Page.MaintainScrollPositionOnPostBack = True
|
||||
Else
|
||||
@@ -146,7 +147,8 @@ Partial Class Customers_Default3
|
||||
list.Add(strtempOBUID)
|
||||
list.Add(strtempVermerk)
|
||||
list.Add(strtempGueltigBis)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails.Add(list)
|
||||
End If
|
||||
Next
|
||||
@@ -233,7 +235,8 @@ Partial Class Customers_Default3
|
||||
list_M.Add(strtempOBUID)
|
||||
list_M.Add(strtempVermerk)
|
||||
list_M.Add(strtempGueltigBis)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") Then
|
||||
list_M.Add(l2.KfzKennzeichen)
|
||||
If String.Equals(strtempVerloren, "False") Or String.Equals(strtempGestohlen, "False") Or String.Equals(strtempGesperrt, "False") Or String.Equals(strtempDefekt, "False") Or String.Equals(strtempArchivt, "False") And l2.KartenNr = CardNr Then
|
||||
listdetails_M.Add(list_M)
|
||||
End If
|
||||
|
||||
|
||||
Reference in New Issue
Block a user