类文件方式使用 FlashRemoting+.NET(.net部分更换成开源控件)
以前上传的文件中,使用的转换控件是商业控件,没有源码,而且没有后续版本,最近在网上发现一个能实现相同功能的开源控件fluorine ,经过使用,效果很好,而且对原有代码基本没有改变。
所以将以前做的示例修改后重新上传。
对以前的代码需要做两处修改:
1。修改webconfig
<httpModules>
<add name="GatewayController" type="FlashGateway.Controller.GatewayController,flashgateway" />
</httpModules>
改为
<httpModules>
<add name="FluorineGateway" type="com.TheSilentGroup.Fluorine.FluorineGateway,com.TheSilentGroup.Fluorine" />
</httpModules>
在Flash.cs文件中增加 “using com.TheSilentGroup.Fluorine;”
新的文件下载地址
所以将以前做的示例修改后重新上传。
对以前的代码需要做两处修改:
1。修改webconfig
<httpModules>
<add name="GatewayController" type="FlashGateway.Controller.GatewayController,flashgateway" />
</httpModules>
改为
<httpModules>
<add name="FluorineGateway" type="com.TheSilentGroup.Fluorine.FluorineGateway,com.TheSilentGroup.Fluorine" />
</httpModules>
在Flash.cs文件中增加 “using com.TheSilentGroup.Fluorine;”
新的文件下载地址