Hi,
I have a web application that uses a class called "CommonFunctions" located in the App_Code folder.
I can use functions in this class in the ASPX file, e.g.:
<script language="vbscript" runat="server">
dim X as string
X = CommonFunctions.Func1()
</script>
This procedure works correctly in the local host. But when I upload the whole system, it returns the following error:
Compiler Error Message: BC30451: Name 'CommonFunctions' is not declared.
and highlights this line of code:
X = CommonFunctions.Func1()
Any help please