Revert "Änderungen"

This reverts commit 94c7c5fd99.
This commit is contained in:
ja
2021-12-15 11:44:33 +01:00
parent 94c7c5fd99
commit cb7be47bb2
5 changed files with 106 additions and 168 deletions

View File

@@ -1,7 +1,7 @@

Partial Class Customers_Default2
Inherits System.Web.UI.Page
Protected Async Sub Page_Load(ByVal sender As Object, e As EventArgs) Handles Me.Load
Protected Sub Page_Load(ByVal sender As Object, e As EventArgs) Handles Me.Load
If Page.IsPostBack Then
Page.MaintainScrollPositionOnPostBack = True
@@ -33,12 +33,4 @@ Partial Class Customers_Default2
txt_Fehlercodezuzahl.Text = finalstr
End If
End Sub
Protected Async Function Butn_TestHashrate_ClickAsync(sender As Object, e As EventArgs) As Threading.Tasks.Task
Dim ztemp As Byte() = Await TestPerformance.TestSaltHashRateMax(VERAG_VARIABLES.RandomInteger(Math.Pow(2, 10), Math.Pow(2, 14)))
lbl_resulttesthashrate.ForeColor = Drawing.Color.GreenYellow
lbl_resulttesthashrate.Text = "Successful Test with: " + Convert.ToBase64String(ztemp) + "in der zeit: " + Space(2) + TimeSpan.FromMilliseconds(TestPerformance.zeitspannefürtest).Milliseconds.ToString
End Function
End Class