I have programmed a Web Service called Customer.asmx.
This is the code:
<%@ WebService Language="VB" Class="Customer"%>
Imports System.Web.Services
<WebService(Namespace:="DigitalSnd1")> _
Public Class Customer
Public Name As String
<WebMethod()> Public Sub Custname()
Name="The name is John"
End Sub
End Class
I also have programmed an aspx to call this Web Service
<%@ Page Language="VB" Debug="true"%>
<html>
<head>
<title>Customer</title>
</head>
<body>
<%
Dim theCustom As new Customer()
Bookmarks