Adding Kentico controls to the Visual Studio toolbox
https://docs.kentico.com/k10/references/kentico-controls
Before you start using Kentico Controls in your project, it is recommended to add the controls to the Toolbox in Visual Studio:
- Open your Kentico web project in Visual Studio. Use the WebSite.sln or WebApp.sln file in the website installation directory ( c:\inetpub\wwwroot\Kentico by default).
 - Edit any ASPX web form file, for example Default.aspx under the project root. This is necessary, because the toolbox only offers the controls when working with ASPX markup.
 - Right-click the Toolbox and choose Add Tab.
 - Type the name of the new tab (for example Kentico) and press Enter.
 - Right-click the new tab and select Choose Items.
 - Click Browse on the .NET Framework Components tab of the Choose Toolbox Items dialog.
 - Navigate to the CMS\bin folder under your website.
 - Select the CMS.DocumentEngine.Web.UI.dll library.
 - Click Open and then OK.
 
The controls are now added to the Toolbox. You can drag the controls into the content of your web forms or user controls.
Adding Kentico controls to the Visual Studio toolbox的更多相关文章
- Cannot add Controls from 64-bit Assemblies to the Toolbox or Use in Designers Within the Visual Studio IDE
		
原文地址:https://support.microsoft.com/en-us/kb/963017 Source: Microsoft Support RAPID PUBLISHING RAPID ...
 - 微软正式发布Visual Studio 2013 Update 3 (2013.3) RTM
		
昨天微软的Visual Studio 2013 Update 3(Visual Studio 2013.3)正式发布(RTM)了,做为微软认证金牌合作的葡萄城控件,我们组织力量第一时间进行翻译.分享给 ...
 - 微软正式公布Visual Studio 2013 Update 3 (2013.3) RTM
		
 昨天微软的Visual Studio 2013 Update 3(Visual Studio 2013.3)正式公布(RTM)了,做为微软认证金牌合作的葡萄城控件,我们组织力量第一时间进行翻译. ...
 - Visual Studio 2013 Update 3
		
微软正式发布Visual Studio 2013 Update 3 (2013.3) RTM 昨 天微软的Visual Studio 2013 Update 3(Visual Studio 201 ...
 - 【广州.NET社区推荐】【译】Visual Studio 2019 中 WPF & UWP 的 XAML 开发工具新特性
		
原文 | Dmitry 翻译 | 郑子铭 自Visual Studio 2019推出以来,我们为使用WPF或UWP桌面应用程序的XAML开发人员发布了许多新功能.在本周的 Visual Studio ...
 - 【译】Visual Studio 2019 中 WPF & UWP 的 XAML 开发工具新特性
		
原文 | Dmitry 翻译 | 郑子铭 自Visual Studio 2019推出以来,我们为使用WPF或UWP桌面应用程序的XAML开发人员发布了许多新功能.在本周的 Visual Studio ...
 - 006.Adding a controller to a ASP.NET Core MVC app with Visual Studio -- 【在asp.net core mvc 中添加一个控制器】
		
Adding a controller to a ASP.NET Core MVC app with Visual Studio 在asp.net core mvc 中添加一个控制器 2017-2-2 ...
 - Visual Studio 2017:SQLite/SQL Server Compact ToolBox使用
		
1.首先是下载安装插件:SQLite/SQL Server Compact Toolbox,也可以从工具-->扩展和更新-->联机-->搜索:SQLite/SQL Server Co ...
 - VS:101 Visual Studio 2010 Tips
		
101 Visual Studio 2010 Tips Tip #1 How to not accidentally copy a blank line TO – Text Editor ...
 
随机推荐
- website  robots.txt 防爬虫 措施
			
robots.txt文件用法举例: 1. 允许所有的robot访问 User-agent: * Allow: / 或者 User-agent: * Disallow: 2. 禁止所有搜索引擎访问网站的 ...
 - ACM-ICPC北京赛区[2017-11-19]
			
Domains K-Dimensional Foil Graph Chinese Checkers Cats and Fish #include<stdio.h> #include< ...
 - Android 微信分享与QQ分享功能
			
微信分享与QQ分享功能现在都挺常见的,可以根据一些第三方社会化分功能快速实现,不过多多少少都不怎么纯净,最好都是自己看官方文档来实现就最好了~ 一.微信分享 微信分享功能需要先在微信开放平台注册应用并 ...
 - Python 实现简单图片验证码登录
			
朋友说公司要在测试环境做接口测试,登录时需要传入正确的图片的验证码,本着懒省事的原则,推荐他把测试环境的图片验证码写死,我们公司也是这么做的^_^.劝说无果/(ㄒoㄒ)/~~,只能通过 OCR 技术来 ...
 - python中if语句的使用
			
1.对体重标准的判断 #coding:utf-8 height=170weight=65#weight=height-105if weight<height-105: print '您偏瘦!注意 ...
 - Nginx配置udp/tcp代理
			
#编译 ./configure --prefix=/servyouapp/nginx --with-stream --with-http_stub_status_module #nginx.conf部 ...
 - GDI 线段绘制示例程序
			
#include <windows.h> #include <strsafe.h> #include <stack> typedef struct tagLINE ...
 - React传递参数的多种方式
			
最常见的就是父子组件之间传递参数 父组件往子组件传值,直接用this.props就可以实现 在父组件中,给需要传递数据的子组件添加一个自定义属性,在子组件中通过this.props就可以获取到父组件传 ...
 - C++ STL - queue使用详解
			
c++队列模板类的定义在<queue>头文件中,queue 模板类需要两个模板参数,一个是元素类型,一个容器类型,元素类型是必要的,容器类型是可选的,默认为deque 类型. 下面详细介绍 ...
 - nyoj28-大数阶乘
			
大数阶乘 时间限制:3000 ms | 内存限制:65535 KB 难度:3 描述 我们都知道如何计算一个数的阶乘,可是,如果这个数很大呢,我们该如何去计算它并输出它? 输入 输入一个整数m(0& ...