Error: VBNC99999: No less generic

cjesup

New Member
Messages
6
Reaction score
0
Points
0
I've got some fairly simple code that (as usual) runs perfectly fine on the ASP.NET development server through Visual Studio. I've searched Google for the error, only to find source code (which I did peruse, but to no avail). Can someone please help me with this?
Description: Error compiling a resource required to service this request. Review your source file and modify it to fix this error.
Compiler Error Message: VBNC99999: No less generic: /tmp/nobody-temp-aspnet-0/a890328a/App_Web_328cc823_0.vb (40,21)
Source Error:
Line 18: Dim di As New DirectoryInfo(Server.MapPath("Artwork/" & path))
Line 19: Dim subdirs As DirectoryInfo() = di.GetDirectories
Line 20: Dim subcatCount As Integer
Line 21: If subdirs.Length > 0 Then
Line 22: ' Find subcats and artwork
Source File: /tmp/nobody-temp-aspnet-0/a890328a/App_Web_328cc823_0.vb Lines: 20, 29, 38, 40, 47

 
Last edited:

cjesup

New Member
Messages
6
Reaction score
0
Points
0
Issue Resolved

In a procedure I called, I was attempting to pass a View control ByRef. Mono didn't like this, apparently. Took out this parameter and the page loaded correctly.
 
Top