<WebMethod()> _
Public Function UpdateProductDetail(ByVal ProductName As String, ByVal Remarks As String) As Integer
Dim sSQl As String
Dim pobjDas As New DBAccess
sSQl = "INSERT INTO ProductDetail (ProducDetailId, productName, Remark) VALUES (NEWID(), '" & ProductName & "', '" & Remarks & "')"
Return pobjDas.ExecuteSQL(sSQl)
End Function
这是我在VB.net中的网络服务。我怎么能从android调用它。
答案 0 :(得分:0)
您应该提供与平台无关的方法来访问此方法。我不知道VB.NET如何处理它,但我使用RESTful WebServices,我有一个很好的历史记录在Android上访问它们。