(in the Client file)
this isn't working, i'm getting the following error
Compiler Error Message: CS0118: 'MathService' denotes a 'namespace' where a 'class' was expected
all the files are in a MathService folder, no sub folders.
do i need to setup the namespace so that the asp.net knows where it is before the client can access its methods.
should i use relative or absolute addresss for the namespace? the tutorials i've found aren't every helpful when something goes wrong. StevoIE
Code:
<%@ Import Namespace="MathService" %>
Compiler Error Message: CS0118: 'MathService' denotes a 'namespace' where a 'class' was expected
all the files are in a MathService folder, no sub folders.
do i need to setup the namespace so that the asp.net knows where it is before the client can access its methods.
should i use relative or absolute addresss for the namespace? the tutorials i've found aren't every helpful when something goes wrong. StevoIE