On Tue, 2006-01-24 at 23:18 +0000, peter wrote: > Well, there is a dll in the bin directory and looking at it on Windows > using ILDASM, it contains defintions of all the objects in my > application, so I guess that's OK. The app won't run under XSP without > the Src attribute though. But as long as the Src attribute is there, > all I have to do is to copy the files (source and binary) from VS into > the Web server's directory tree and it all seems to just work fine. > > Is that what you're saying, or am I missing something?
When that dll is in bin, you only need 'Inherits="namespace.classname"'. Src will compile into an auto-generated class name (unless you use 'ClassName' attribute, in which case you'll get that the class name is duplicated, as it is already in bin). -Gonzalo _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
