rastkocvetkovic
Programmer
I'll make it simple
library.asp:
-------
<%
Function TestFunction
TestFunction = 12
End TestFunction
%>
-------
test.asp
-------
<!--#include file="library.asp"-->
The value is |<% Response.Write(TestFunction) %>|
-------
OUTPUT (no errors)
-------
The value is ||
-------
What could be wrong? Thanks in advance
library.asp:
-------
<%
Function TestFunction
TestFunction = 12
End TestFunction
%>
-------
test.asp
-------
<!--#include file="library.asp"-->
The value is |<% Response.Write(TestFunction) %>|
-------
OUTPUT (no errors)
-------
The value is ||
-------
What could be wrong? Thanks in advance