有时候,我都真想直接去商场门口发传单,举牌子了
请一定帮忙,谢谢!
请看看:
http://community.csdn.net/Expert/topic/3663/3663763.xml?temp=.569195

解决方案 »

  1.   

    你说对了
    在C:\Program Files\IE Web Controls\src有有文件BaseRichControl.cs
    把其中
    private const string DefaultCommonFilesRoot = "/webctrl_client/";
    改为
    private const string DefaultCommonFilesRoot = "./webctrl_client/";
      

  2.   

    to  welshem(天堂客) 
    我改成
    private const string DefaultCommonFilesRoot = "webctrl_client/";
    在同级目录下可以用
    但在子目录里面却不能用,
    另外,这个控件配置目录为什么在wwwroot下运行正常
    她是怎样得到虚拟路径得
    她到底是怎样的原理
      

  3.   

    private const string DefaultCommonFilesRoot = "/webctrl_client/";
    用了绝对根,指向了wwwroot
    所以就一定能找到
    private const string DefaultCommonFilesRoot = "./webctrl_client/";

    private const string DefaultCommonFilesRoot = "webctrl_client/";
    都是相对路径,当前就会有问题