2012-03-23 15 views

答えて

3

Kendo UI and ASP.NET WebForms : Building a Task Managerのようにこのサンプルアプリケーションを確認してください。ここでは、この作業を開始する手順を示します。ヘッド部で

- In Visual Studio, create a new ASP.NET Web application. 
- Download Kendo UI. 
- From the Kendo UI download, I copied the following files into the TaskManager/Scripts folder:  
    1.js/jquery.min.is 
    2.js/keno.all.min.js 
- In the TaskManager application I created a new folder called "kendo" in the /Content folder. 

- From the Kendo UI download, copy the following files/folders into the /Content:  
    1.styles/kendo.common.min.css  
    2.styles/kendo.silver.min.css 
    3.styles/Silver (folder) 

Inclueこれら:

<head> 
<title></title> 
    <link href="Content/kendo/kendo.common.min.css" rel="Stylesheet" type="text/css" /> 
    <link href="Content/kendo/kendo.silver.min.css" rel="Stylesheet" type="text/css" /> 
    <link href="Content/Site.css" rel="Stylesheet" type="text/css" /> 

    <script src="Scripts/jquery.min.js" type="text/javascript"></script> 
    <script src="Scripts/kendo.all.min.js" type="text/javascript"></script> 
    <script src="Scripts/json.extensions.js" type="text/javascript"></script> 
</head> 

は剣道のサンプルと使用のためにCodeplex - Kendo UI ASP.NET Sample Applicationsのために行きます。

2

シンプル必要なのは、この

が新しいASP.Net空のWebアプリケーションを作成し始めるために の設定ガイドです。

enter image description here

注:あなたは本当に私は何も開始することを選んだこのチュートリアルでは、あなたが好きなWebベースのプロジェクトテンプレートを使用することができます。 :)

プロジェクトがロードされたら、NuGet Package Managerコンソールを起動します。ここで

:。NuGet NuGetは、Visual Studioで、サードパーティのライブラリとツールをインストールして更新することが容易になりますVisual Studioの拡張である(JクエリとKendouiファイルのような)

を使用してプロジェクトにはJQueryを追加しますコマンド:

インストール・パッケージのjQueryを

のコマンドを使用して、プロジェクトにKendoUIを追加します。

をインストールし、パッケージKendoUIWeb

あなたはコマンドNuGetこれらの両方を実行すると、ソリューションエクスプローラは次のようになります。

enter image description here

出典:私が今まで見た中で最高の編集ですCheck it out

関連する問題