Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

web service public variable, Compiler Error Message: BC30456

Status
Not open for further replies.

tuzojazz

Programmer
Dec 26, 2005
58
MX
Hi:

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()

theCustom.Custname()
%>
<%=theCustom.Name%>
</body>
</html>


I get an error at this line

<%=theCustom.Name%>

Compiler Error Message: BC30456: 'Name' is not a member of 'Customer'.



What Could be wrong If I have "Name" declared as public variable in the web service code??

Thanks!!
 
It could be down the outdated classic ASP method that you are using. Try using the code behind file (and do a bit of research on the basics of ASP.NET from and creating the object in the page load method. If you still get the error there then post back.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top