我在CSDN上也搜了一下,看了一下下面的网站:http://www.microsoft.com/china/msdn/archives/library/dnaspp/html/aspnet-usingtreeviewiewebcontrol.asp#aspnet-usingtreeviewiewebcontrol_topic3
相关内容也看过了,Internet Explorer Web 控件程序也下载并安装了,对接下来要做的事情有几点不明白:
1、编译 src 子目录中的类,并将生成的程序集和支持文件复制到 build 子目录中。
问:“src 子目录中的类”要如何编译啊?
2、将 build\Runtime 子目录中的内容复制到 Web 应用程序的 /webctrl_client/1_0 子目录中
问:“/webctrl_client/1_0 ”文件夹我电脑上没有啊,怎么办?
3、运行完 build.bat 文件后,build 子目录将包含程序集文件Microsoft.Web.UI.WebControls.dll
和子目录 Runtime
问:build 子目录里面没有“Microsoft.Web.UI.WebControls.dll”啊?是什么原因?
请高手指点一下,比较急啊!分不够再加!
学习,关注……
8 个解决方案
#1
没有人会吗???
帮忙啊……
帮忙啊……
#2
编辑 build.bat 为:
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
#3
=====================================
Internet Explorer Web Controls README
=====================================
Last updated: 1/14/2002
Thank 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 /y
3. 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.dll
4. 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
Internet Explorer Web Controls README
=====================================
Last updated: 1/14/2002
Thank 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 /y
3. 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.dll
4. 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
#4
to :boytomato(深爱一人叫颖的女孩!)
你怎么把ReadMe的内容帖上来了啊,我早就看过了啊!!!
xcopy /s /i .\build\Runtime c:\Inetpub\wwwroot\webctrl_client\1_0 /y
这个命令运行后好象没有什么反应啊!!!
你怎么把ReadMe的内容帖上来了啊,我早就看过了啊!!!
xcopy /s /i .\build\Runtime c:\Inetpub\wwwroot\webctrl_client\1_0 /y
这个命令运行后好象没有什么反应啊!!!
#5
3、运行完 build.bat 文件后,build 子目录将包含程序集文件Microsoft.Web.UI.WebControls.dll
和子目录 Runtime
问:build 子目录里面没有“Microsoft.Web.UI.WebControls.dll”啊?是什么原因?
因这, csc.exe ,你没有加到环境 中去,你可以调用它的全部路径.....
编辑 build.bat 为:
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
我上边是用的 默认的,你要不是可以改一下....
上边不起作用..你手动考一下...
C:\Inetpub\wwwroot
新建
webctrl_client 文件夹 它里面,再建 1_0 的文件夹
然后把IE Web Controls\build\Runtime\ 中的数据考到webctrl_client\ 1.0 \中,不要
Rnntime 文件夹啊..只要它里的.....
和子目录 Runtime
问:build 子目录里面没有“Microsoft.Web.UI.WebControls.dll”啊?是什么原因?
因这, csc.exe ,你没有加到环境 中去,你可以调用它的全部路径.....
编辑 build.bat 为:
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
我上边是用的 默认的,你要不是可以改一下....
上边不起作用..你手动考一下...
C:\Inetpub\wwwroot
新建
webctrl_client 文件夹 它里面,再建 1_0 的文件夹
然后把IE Web Controls\build\Runtime\ 中的数据考到webctrl_client\ 1.0 \中,不要
Rnntime 文件夹啊..只要它里的.....
#6
好的,明天我到公司试试看
谢谢了!
谢谢了!
#7
boytomato(深爱一人叫颖的女孩!):
#8
boytomato(深爱一人叫颖的女孩!):
太感谢你了,我终于调通了!
太感谢你了,我终于调通了!
#1
没有人会吗???
帮忙啊……
帮忙啊……
#2
编辑 build.bat 为:
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
#3
=====================================
Internet Explorer Web Controls README
=====================================
Last updated: 1/14/2002
Thank 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 /y
3. 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.dll
4. 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
Internet Explorer Web Controls README
=====================================
Last updated: 1/14/2002
Thank 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 /y
3. 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.dll
4. 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
#4
to :boytomato(深爱一人叫颖的女孩!)
你怎么把ReadMe的内容帖上来了啊,我早就看过了啊!!!
xcopy /s /i .\build\Runtime c:\Inetpub\wwwroot\webctrl_client\1_0 /y
这个命令运行后好象没有什么反应啊!!!
你怎么把ReadMe的内容帖上来了啊,我早就看过了啊!!!
xcopy /s /i .\build\Runtime c:\Inetpub\wwwroot\webctrl_client\1_0 /y
这个命令运行后好象没有什么反应啊!!!
#5
3、运行完 build.bat 文件后,build 子目录将包含程序集文件Microsoft.Web.UI.WebControls.dll
和子目录 Runtime
问:build 子目录里面没有“Microsoft.Web.UI.WebControls.dll”啊?是什么原因?
因这, csc.exe ,你没有加到环境 中去,你可以调用它的全部路径.....
编辑 build.bat 为:
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
我上边是用的 默认的,你要不是可以改一下....
上边不起作用..你手动考一下...
C:\Inetpub\wwwroot
新建
webctrl_client 文件夹 它里面,再建 1_0 的文件夹
然后把IE Web Controls\build\Runtime\ 中的数据考到webctrl_client\ 1.0 \中,不要
Rnntime 文件夹啊..只要它里的.....
和子目录 Runtime
问:build 子目录里面没有“Microsoft.Web.UI.WebControls.dll”啊?是什么原因?
因这, csc.exe ,你没有加到环境 中去,你可以调用它的全部路径.....
编辑 build.bat 为:
@if "%_echo%"=="" echo off
if not exist build mkdir build
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\csc.exe /out:build\Microsoft.Web.UI.WebControls.dll @IEWebControls.rsp
xcopy src\Runtime build\Runtime /E /Y /I /Q
我上边是用的 默认的,你要不是可以改一下....
上边不起作用..你手动考一下...
C:\Inetpub\wwwroot
新建
webctrl_client 文件夹 它里面,再建 1_0 的文件夹
然后把IE Web Controls\build\Runtime\ 中的数据考到webctrl_client\ 1.0 \中,不要
Rnntime 文件夹啊..只要它里的.....
#6
好的,明天我到公司试试看
谢谢了!
谢谢了!
#7
boytomato(深爱一人叫颖的女孩!):
#8
boytomato(深爱一人叫颖的女孩!):
太感谢你了,我终于调通了!
太感谢你了,我终于调通了!