Änderungen

This commit is contained in:
ja
2022-01-14 08:16:15 +01:00
parent f716cfbc4e
commit 94dc89aa04
5 changed files with 1331 additions and 1546 deletions

View File

@@ -1,5 +1,6 @@
Imports System.Data.SqlClient
Imports System.Web
Imports System.Web.Script.Services
Imports System.Web.Services
Imports System.Web.Services.Protocols
@@ -11,6 +12,8 @@ Imports System.Web.Services.Protocols
Public Class WebService
Inherits System.Web.Services.WebService
'################################################Autocompleter Aufträge.aspx#################################################################################################################################################################
<WebMethod()>
Public Function ShowLKWs(ByVal sLookUP As String) As List(Of String)
Dim lstCountries As New List(Of String)()
@@ -123,6 +126,7 @@ Public Class WebService
myConn.Close() : Return lstCountries
End Function
<WebMethod()>
Public Function ShowRENr(ByVal sLookUP As String) As List(Of String)
Dim lstCountries As New List(Of String)()
@@ -151,4 +155,5 @@ Public Class WebService
myConn.Close() : Return lstCountries
End Function
End Class