R
Ralph Wiggum
I have an aspx that looks like this:
<%@ Import Namespace="System.Collections.Specialized" %>
<%@ Assembly Src="MyClass.cs" %>
....
I'm only using the imported namespace in MyClass.cs, not in the aspx itself. Is it possible to do the import in MyClass.cs, instead of the aspx? I can't figure out the syntax...
<%@ Import Namespace="System.Collections.Specialized" %>
<%@ Assembly Src="MyClass.cs" %>
....
I'm only using the imported namespace in MyClass.cs, not in the aspx itself. Is it possible to do the import in MyClass.cs, instead of the aspx? I can't figure out the syntax...