我已經創建了簡單的shopify應用程序來檢索產品詳細信息。從服務器使用.net顯示json數據網格視圖
當我從gihub訪問代碼時。
它成功運行並在文本框中顯示產品詳細信息。
我需要進行簡單的更改以在網格視圖中顯示產品詳細信息。
這裏是dafault.aspx:
現有的代碼;
的Default.aspx:
<%@ Page Language="C#" AutoEventWireup="true" codefile="Default.aspx.cs" Inherits="SampleWebApplication._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="APIOutput" TextMode="MultiLine" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>
這裏是我的輸出截圖http://s22.postimg.org/xj9zacxa9/untitled.jpg
我需要顯示在GridView的產品細節,
default.cs:
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using ShopifyAPIAdapterLibrary;
using System.Configuration;
using System.Web.Services;
namespace SampleWebApplication
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ShopifyAuthorizationState state = HttpContext.Current.Session["Shopify.AuthState"] as ShopifyAuthorizationState;
ShopifyAPIClient client
= new ShopifyAPIClient(state);
APIOutput.Text = (string)client.Get("/admin/products.json");
}
}
}
但我只是與代碼文件混淆,任何人都可以幫助我獲得產品gridview中的細節?
任何幫助將不勝感激。
在此先感謝。
添加一個gridview控件,將JSON反序列化爲一個對象列表,將列表綁定到gridview。 – Tim
其實我是新來的.net ..你能指導我嗎?謝謝 – pcs