*SellerListingSearchのサンプルコード(VB.NET) [#t8088cf4]

ここで紹介しているコードは[[こちらのプロキシクラス>../../../ProxyClass]]を使用しています。

ここで紹介しているコードは[[こちらのC#のコード>../../CS/SellerListingSearch]]をVB.NETに変換したものです。

指定した出品者が出品している商品を表示するサンプルです。TextBoxに出品者のIDを入力します。

#code(vbnet){{
<%@ Page Language="VB" %>
<%@ Import Namespace="Amazon.jp.v20060913" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    Protected Sub Button1_Click(ByVal sender As Object, _
        ByVal e As EventArgs)
        Dim req As New SellerListingSearchRequest()
        'Seller IDを指定する
        req.SellerId = TextBox1.Text
        'タイトル名で並べる
        req.Sort = "title"
   
        Dim sls As New SellerListingSearch()
        'あなたのAccess Key ID
        sls.AWSAccessKeyId = "(あなたのAccessKeyID)"
        'あなたのAssociate ID
        sls.AssociateTag = "dobonnet-22"
        sls.Request = New SellerListingSearchRequest() {req}
   
        Dim aws As New AWSECommerceService()
        Dim res As SellerListingSearchResponse
        Try
            'SellerListingSearchオペレーションを実行し、結果を取得
            res = aws.SellerListingSearch(sls)
        Catch ex As Exception
            Label1.Text = "エラー:" + Server.HtmlEncode(ex.Message)
            Return
        End Try
   
        If res Is Nothing OrElse res.SellerListings Is Nothing Then
            Label1.Text = "結果を取得できませんでした。"
            Return
        End If
        If Not (res.SellerListings(0).Request.Errors Is Nothing) Then
            Label1.Text = "エラー:" + _
                res.SellerListings(0).Request.Errors(0).Message
            Return
        End If
        If res.SellerListings(0).SellerListing Is Nothing Then
            Label1.Text = "該当するSellerのリストが見つかりませんでした。"
            Return
        End If
   
        '結果を表示
        Dim listings As SellerListings = res.SellerListings(0)
        Label1.Text += "総数 : " + listings.TotalResults + "<br />"
        Label1.Text += "<ul>" + vbLf
        Dim sl As SellerListing
        For Each sl In listings.SellerListing
            Label1.Text += "<li><b>" + sl.Title + "</b><br />" + vbLf
            Label1.Text += "価格 : " + sl.Price.FormattedPrice + _
                "<br />" + vbLf
            Label1.Text += "ExchangeID : " + sl.ExchangeId + _
                "<br />" + vbLf
            Label1.Text += "ASIN : " + sl.ASIN + "<br />" + vbLf
            Label1.Text += "ListingId : " + sl.ListingId + _
                "<br />" + vbLf
        Next sl
        Label1.Text += "</ul>" + vbLf
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Amazon出品者の商品リスト表示</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <label for="TextBox1">出品者のID : </label>
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <asp:Button ID="Button1" runat="server"
         OnClick="Button1_Click" Text="送信" /><br />
    </div>
    </form>
    <br />
    <asp:Label ID="Label1" runat="server" EnableViewState="False">
    </asp:Label>
</body>
</html>
}}

//これより下は編集しないでください
#pageinfo(,2006-10-20 (金) 00:59:49,DOBON!,2006-10-20 (金) 02:19:47,DOBON!)
#pageinfo([[:Category/.NET]] [[:Category/ASP.NET]],2006-10-20 (金) 00:59:49,DOBON!,2006-10-20 (金) 02:19:47,DOBON!)
[ トップ ]   [ 編集 | 差分 | バックアップ | 添付 | 複製 | 名前変更 | リロード ]   [ 新規 | 子ページ作成 | 一覧 | 単語検索 | 最終更新 | ヘルプ ]