I have an application that I've set default language to c#, is it possible to run a .vb class inside of this IIS application?
|
|
One option is to add the file containing the class to a sub directory of the App_Code directory and set compilation to VB for that folder: http://shailkpatel.blogspot.com/2007/10/multiple-programming-languages-in.html Assuming it's a web site and not a web application |
||
|
|
|
|
You could have aspx pages mixing c# and VB.NET in the same site: defaultVB.aspx:
defaultCSharp.aspx:
Of course this assumes that you don't use code behind files. |
||
|
|
|
|
You have to write your vb class on a different assembly. Then you can instance it from c# code. |
||
|
|
