1. if you are using vs.net, in the same project, you cannot use different languages in the codebehind  of course, you can always manually compile each codebehind file into a dll, then, you can use any .NET language in any page2. vbc is vb.net compiler, the command will compile feature.vb into feature.dll

解决方案 »

  1.   

    谢谢: saucer(思归)  Kinli(动感磁场)
    可是,我还是不太懂:
    是不是可以用  vbc 将bbb.vb compile into bbb.dll (用这句话
    c:\winnt\microsoft.net\framework\v1.0.3705\vbc /t:library /r:system.dll,system.web.dll C:\Inetpub\wwwroot\MyApplication1\news\bbb.vb”  )——————这句写在哪里?
    然后:如何在c#项目中的aaa.aspx使用bbb.dll能不能请在细述一下!万分感谢!!!
      

  2.   


    “然后:如何在c#项目中的aaa.aspx使用vbc 编译的 bbb.dll”
    可能没写清楚
      

  3.   

    >>>>这句写在哪里?start->programs->microsoft visual studio .net->visual studio .net tools->visual studio .net command promptcd to  C:\Inetpub\wwwroot\MyApplication1\news\, then run the above command>>>>如何在c#项目中的aaa.aspx使用bbb.dllcopy the bbb.dll to the MyApplication1\bin subdirectoryif the classes in bbb.dll don't have a namespace, you can just use the classes, otherwise, you need to do in aspx page:<%@ Import Namespace="YourNamespace" %>in codebehind, you will dousing YourNamespace; thenYourClass yc = new YourClass();
      

  4.   

    该题我一个多小时前就结帖 了  saucer(思归) 前辈66分
    怎么还没显示呀???