Y
yanghai0437
Unregistered / Unconfirmed
GUEST, unregistred user!
在asp.net中怎样作下拉式菜单
我用Coalesys.WebMenu.dll作菜单,但是不知道怎样安装Coalesys.WebMenu.dll the Assembly
我的英文太差了
Installing the Assembly
The WebMenu for ASP.NET Assembly can be found in the product installation directory and is named "Coalesys.WebMenu.dll". To use the WebMenu for ASP.NET assembly, you must transfer this file to an appropriate location on the ASP.NET server. The assembly can also be added to the Visual Studio.NET toolbox using this file.
The Application /bin Directory
Each Web Application developed in ASP.NET has a local /bin directory where assemblies can be placed and used exclusively by the application. ASP.NET pages can then
use the assembly by including the @Register directive:
<%@ Register TagPrefix="cswm" Namespace="Coalesys.WebMenu" Assembly="Coalesys.WebMenu" %>
The Global Assembly Cache
The Global Assembly Cache (GAC) is .NET's central repository of assemblies on a machine. Only assemblies that have strong names (like WebMenu) can be installed to the GAC. An assembly in the GAC can then
be used by any .NET application.
The GAC can be found in the Windows/Assembly folder. Drag "Coalesys.WebMenu.dll" to this folder to add WebMenu to the GAC.
Once in the GAC, an assembly can be used in an ASP.NET page using it's complete information in the @Register directive:
<%@ Register TagPrefix="cswm" Namespace="Coalesys.WebMenu" Assembly="Coalesys.WebMenu, Version=1.2.56.0, Culture=neutral, PublicKeyToken=3c85914aca6a0634" %>
我用Coalesys.WebMenu.dll作菜单,但是不知道怎样安装Coalesys.WebMenu.dll the Assembly
我的英文太差了
Installing the Assembly
The WebMenu for ASP.NET Assembly can be found in the product installation directory and is named "Coalesys.WebMenu.dll". To use the WebMenu for ASP.NET assembly, you must transfer this file to an appropriate location on the ASP.NET server. The assembly can also be added to the Visual Studio.NET toolbox using this file.
The Application /bin Directory
Each Web Application developed in ASP.NET has a local /bin directory where assemblies can be placed and used exclusively by the application. ASP.NET pages can then
use the assembly by including the @Register directive:
<%@ Register TagPrefix="cswm" Namespace="Coalesys.WebMenu" Assembly="Coalesys.WebMenu" %>
The Global Assembly Cache
The Global Assembly Cache (GAC) is .NET's central repository of assemblies on a machine. Only assemblies that have strong names (like WebMenu) can be installed to the GAC. An assembly in the GAC can then
be used by any .NET application.
The GAC can be found in the Windows/Assembly folder. Drag "Coalesys.WebMenu.dll" to this folder to add WebMenu to the GAC.
Once in the GAC, an assembly can be used in an ASP.NET page using it's complete information in the @Register directive:
<%@ Register TagPrefix="cswm" Namespace="Coalesys.WebMenu" Assembly="Coalesys.WebMenu, Version=1.2.56.0, Culture=neutral, PublicKeyToken=3c85914aca6a0634" %>