c# 应用程序中的小程序问题

Troubles with applets in c# application

我正在尝试 运行 使用 c# 开发的 Web 应用程序中的一些小程序,当我 运行 它时,我收到此消息:

ClassNotFoundException .PruebaPulsacion.class

我在这里检查了一些问题,但它们对我不起作用,我不知道该怎么做。 在我的 aspx 页面中有这段代码:

<applet codebase="http://etao-inico.usal.es/applets/paqApplet/"code="PruebaPulsacion.class" archive="etao4.jar,xercesImpl.jar,xml-apis.jar" width="100%" height="100%">
    <asp:Literal runat="server" ID="literalParametros"></asp:Literal>
</applet>

我的结构就是你在这张图上看到的:

   /
    -applets
           --paqApplets
                ---PruebaPulsacion.class
                ---etao4.jar
                ---.......class

所以你可以检查我的代码库,我有 url class 所在的位置,而且我已经把所有的罐子都放在这个文件夹里,但什么都没有。我已经关注了这个问题:How to specify correctly codebase and archive in Java applet?!但它不起作用。你能帮帮我吗?

问题出在代码的路径上。最后我删除了代码库并写了下一行:

 <applet code="paqApplet/PruebaPulsacion.class" archive="http://etao-inico.usal.es/etao4.jar,http://etao-inico.usal.es/xercesImpl.jar,http://etao-inico.usal.es/xml-apis.jar" width="100%" height="100%">
    <asp:Literal runat="server" ID="literalParametros"></asp:Literal>
</applet>