1.

How To Include Multiple Vb/cs Files In The Source?

Answer»

You can do this using assembly directives.
<%@ assembly src="test1.vb" %>
<%@ assembly src="test2.vb" %>
or
<%@ assembly src="test1.cs" %>
<%@ assembly src="test2.cs" %>

However, note that each source FILE will be compiled individually into its own assembly, so they cannot have DEPENDENCIES on each other.

You can do this using assembly directives.
<%@ assembly src="test1.vb" %>
<%@ assembly src="test2.vb" %>
or
<%@ assembly src="test1.cs" %>
<%@ assembly src="test2.cs" %>

However, note that each source file will be compiled individually into its own assembly, so they cannot have dependencies on each other.



Discussion

No Comment Found