You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: HOL.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,12 @@ The new version of ASP.NET Web Forms introduces a number of enhancements focused
81
81
In this task, you will discover the new strongly-typed bindings available in ASP.NET 4.5.
82
82
83
83
1. Open **Visual Studio 2012** and open the **WebFormsLab-Ex1-Begin.sln** solution located in the **Source\Ex1-ModelBinding\Begin** folder of this lab.
84
+
85
+
1. Click **Project** and select **Manage NuGet Packages**.
86
+
87
+
1. In the **Manage NuGet Packages** page, click **Restore** in order to download missing packages.
88
+
89
+
1. Build the solution by clicking **Build** | **Build Solution**.
84
90
85
91
1. Open the **Customers.aspx** page. Place an unnumbered list in the main control and include a repeater control inside for listing each customer. Set the repeater name to **customersRepeater** as shown in the following code.
86
92
@@ -585,6 +591,12 @@ Forms with complex data including validators tend to generate too much JavaScrip
585
591
In this section, you will enable unobtrusive validation in ASP.NET to compare the HTML code generated by both configurations.
586
592
587
593
1. Open **Visual Studio 2012** and open the **WebFormsLab-Ex2-Begin.sln** solution located in the **Source\Ex2-Validation\Begin** folder of this lab. Alternatively, you can continue working on your existing solution from the previous exercise.
594
+
595
+
1. If you opened the provided **Begin** solution, you will need to download some missing NuGet packages before continue. To do this, click **Project** and select **Manage NuGet Packages**.
596
+
597
+
1. In the **Manage NuGet Packages** page, click **Restore** in order to download missing packages.
598
+
599
+
1. Finally, build the solution by clicking **Build** | **Build Solution**.
588
600
589
601
1. Press **F5** to start the web application. Go to the Customers page and click the **Add a New Customer** link.
590
602
@@ -909,6 +921,12 @@ In this exercise, you will be introduced to the new asynchronous page processing
909
921
In this task, you will update the product details page to allow the user to specify an image URL for the product and display it in the read-only view. You will create a local copy of the specified image by downloading it synchronously. In the next task, you will update this implementation to make it work asynchronously.
910
922
911
923
1. Open **Visual Studio 2012** and load the **WebFormsLab-Ex3-Begin.sln** solution located in **Source\Ex3-Async\Begin** from this lab's folder. Alternatively, you can continue working on your existing solution from the previous exercises.
924
+
925
+
1. If you opened the provided **Begin** solution, you will need to download some missing NuGet packages before continue. To do this, click **Project** and select **Manage NuGet Packages**.
926
+
927
+
1. In the **Manage NuGet Packages** page, click **Restore** in order to download missing packages.
928
+
929
+
1. Finally, build the solution by clicking **Build** | **Build Solution**.
912
930
913
931
1. Open the **ProductDetails.aspx** page source and add a field in the FormView's ItemTemplate to show the product image.
0 commit comments