There's nothing in the catalog to display at this time.
diff --git a/src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.cs b/src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.cs
index b2c90de7c..a74ed8e82 100644
--- a/src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.cs
+++ b/src/Web/Catalog.WebForms/Catalog.WebForms/Default.aspx.cs
@@ -33,13 +33,13 @@ namespace eShopOnContainers.Catalog.WebForms
// int startRowIndex
// out int totalRowCount
// string sortByExpression
- public async Task> catalogList_GetData()
+ public async Task> GetCatalogDataAsync()
{
return await catalog?.GetCatalogAsync();
}
// The id parameter name should match the DataKeyNames value set on the control
- public async Task catalogList_DeleteItem(int id)
+ public async Task DeleteCatalogItemAsync(int id)
{
//TODO: Call the service.
}
diff --git a/src/Web/Catalog.WebForms/Catalog.WebForms/EditCatalogItem.aspx b/src/Web/Catalog.WebForms/Catalog.WebForms/EditCatalogItem.aspx
index c26d5673a..1cbbbc206 100644
--- a/src/Web/Catalog.WebForms/Catalog.WebForms/EditCatalogItem.aspx
+++ b/src/Web/Catalog.WebForms/Catalog.WebForms/EditCatalogItem.aspx
@@ -1,41 +1,61 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="EditCatalogItem.aspx.cs" Inherits="eShopOnContainers.Catalog.WebForms.EditCatalogItem" Async="true" %>
+
-
+
-
-