//VS .Net 2003前几天就下载了它,可是生成不了.dll文件,刚才在论坛里找到了帮助,就是改CSC.EXE的路径呵。不过生成后,又有新问题了!=====================================
Internet Explorer Web Controls README
=====================================
Last updated: 1/14/2002Thank you for downloading the IE Web Controls source code release!  The Src 
folder contains the source code for the IE MultiPage, ToolBar, TreeView, and 
TabStrip controls, along with related base classes and design-time support.To build the IE Web Controls:1.  Make sure you have installed the .NET Framework SDK v1.0 or v1.1
2.  Run Build.bat, which will create a build folder in this directory.  
    The build folder contains Microsoft.Web.UI.WebControls.dll and a 
    Runtime directory of supporting files.To run the IE Web Controls:1.  Copy the contents of the Runtime directory to the webctrl_client\1_0
    directory under your top-level site directory.  For example, if your 
    site root is c:\Inetpub\wwwroot, type this at the command prompt:    xcopy /s /i .\build\Runtime c:\Inetpub\wwwroot\webctrl_client\1_0 /y    This will create the following directory structure under the site:      /webctrl_client/1_0
        MultiPage.htc
        TabStrip.htc
        toolbar.htc
        treeview.htc
        webservice.htc
        webserviced.htc
        [images]
        [treeimages]2.  Create a new web application in IIS and copy the contents of the
    samples directory to this application directory.  For example:    xcopy /s /i .\samples c:\Inetpub\wwwroot\sampleapp /y3.  Create a /bin subdirectory for the application and copy the file
    Microsoft.Web.UI.WebControls.dll to this directory.    The contents of the application will be as follows:      /sampleapp
        multipage.aspx
        state_city.xml
        tabstrip.aspx
        toolbar.aspx
        treeview.aspx
        treeview_bound.aspx
        /bin
          Microsoft.Web.UI.WebControls.dll4.  Request the sample pages from your Internet Explorer web browser, for
    example: http://localhost/sampleapp/multipage.aspx
    
For additional documentation and samples visit:
http://msdn.microsoft.com/library/default.asp?url=/workshop/webcontrols/webcontrols_entry.asp帮助上说,要把文件拷到网站根目录(wwwroot)webctrl_client\1_0目录,而我的根目录(wwwroot)下没有这个目录,要自己建?另外,我的网站不是放在根目录(wwwroot)下的嘛,是建的一个虚拟目录(3pz/),又要怎么做?

解决方案 »

  1.   

    1.将该目录中所有的文件与文件夹Copy到vbc.exe的安装目录中D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\,后双击build.bat即可产生build目录.内包含Runtime文件夹与Microsoft.Web.UI.WebControls.dll.2.在Inetpub/wwwroot下建立webctrl_client文件夹,再在webctrl_client下建立1_0文件夹,后把上边Runtime中的文件与文件夹copy至1_0目录中.3.把DLL文件放到wwwroot/bin目录下.4.范例文件在Samples目录中.