Type mismatch on function call
I have a function call that produces a "type mismatch" error. The funny thing is that I cut and pasted the code from a function that works, both the function and function call.
Code:
SvcReturnFuncs.asp:
Public Function BuildTable()
'Do Some Processing
End Function
SvcReturnsReports.asp:
<!-- #INCLUDE SvcReturnFuncs.asp -->
...
'Call Function
BuildTable()
...
As I said before, the function and function call were copied from a peice of code elsewhere in the page. The only thing I changed was the function name and some processing the order in which data is displayed from inside the function.
Any ideas would be appreciated.
Thanks,
Chris:confused: