Fixing Error der gelegentlich auftritt

This commit is contained in:
ja
2022-01-26 17:03:06 +01:00
parent 8c7fd56000
commit 87a0d36283
18 changed files with 3025 additions and 3120 deletions

View File

@@ -11,23 +11,17 @@ Partial Class Customers_Default3
Kdnrtext = Request.QueryString("CustomerID").ToString
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
Kdnrtext = Request.QueryString("CustomerID").ToString
Else
Kdnrtext = Session.Item("CustomerID").ToString
End If
If Page.IsPostBack = True Then
Kdnrtext = Request.QueryString("CustomerID").ToString
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
Kdnrtext = Request.QueryString("CustomerID").ToString
Else
Kdnrtext = Session.Item("CustomerID").ToString
End If
Page.MaintainScrollPositionOnPostBack = True
Else
Kdnrtext = Request.QueryString("CustomerID").ToString
If String.Equals(Session.Item("CustomerID"), String.Empty) Then
Kdnrtext = Request.QueryString("CustomerID").ToString
Else
Kdnrtext = Session.Item("CustomerID").ToString
End If
Page.MaintainScrollPositionOnPostBack = False
End If