Serverseitiges Ändern wurde angefangen implementiert zu werden.
This commit is contained in:
@@ -150,4 +150,21 @@ Public Class WebService
|
||||
|
||||
myConn.Close() : Return lstCountries
|
||||
End Function
|
||||
<WebMethod()>
|
||||
Private Function buildtablerow(page As Page, tbl As Table) As Table
|
||||
|
||||
Dim row As TableRow = New TableRow
|
||||
Dim c1 As TableCell = New TableCell
|
||||
Dim c2 As TableCell = New TableCell
|
||||
Dim c3 As TableCell = New TableCell
|
||||
|
||||
c1.Text = "ID"
|
||||
c2.Text = "Stadt"
|
||||
c3.Text = "Persona"
|
||||
row.Cells.Add(c1)
|
||||
row.Cells.Add(c2)
|
||||
row.Cells.Add(c3)
|
||||
tbl.Rows.Add(row)
|
||||
Return tbl
|
||||
End Function
|
||||
End Class
|
||||
Reference in New Issue
Block a user