yahoo API ASP.NETで表示させるには
お世話になります
環境
Windowsxp pro
asp.net
vb
ACCESS(テーブル)
超初心者
Yahoo APIですが下記を参考中に作成しています
http://www.atmarkit.co.jp/fdotnet/dotnettips/477
aspx--------------------------------------------------------------
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default6.aspx.vb" Inherits="loop_Default6" %>
<!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 runat="server">
<title>webAPI</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtKeyword" runat="server"></asp:TextBox>
<asp:Button ID="btnSearch" runat="server" OnClick="btnSearch_Click" Text="検索" />
<br />
<asp:BulletedList ID="list" runat="server" DataSourceID="Xml" DataTextField="Title"
DataValueField="Url" DisplayMode="HyperLink">
</asp:BulletedList>
<asp:XmlDataSource ID="Xml" runat="server" DataFile="http://search.yahooapis.jp/WebSearchService/V2/webSearch?appid=自分のID&query=apiとは?&results=20"
TransformFile="~/App_Data/YahooSearch.xsl"></asp:XmlDataSource>
<br />
</div>
</form>
</body>
</html>
aspx.vb
Partial Class loop_Default6
Inherits System.Web.UI.Page
Protected Sub btnSearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSearch.Click
Xml.DataFile = _
"http://search.yahooapis.jp/WebSearchService/V2/webSearch?appid=自分のID&query=" _
& Server.UrlEncode(txtKeyword.Text) & "&results=50"
End Sub
End Class
xsl---------------------------------------------
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:yahoo="urn:yahoo:jp:srch" version="1.0">
<xsl:template match="/yahoo:ResultSet">
<ResultSet>
<xsl:for-each select="yahoo:Result">
<Result>
<xsl:attribute name="Title">
<xsl:value-of select="yahoo:Title" />
</xsl:attribute>
<xsl:attribute name="Url">
<xsl:value-of select="yahoo:Url" />
</xsl:attribute>
</Result>
</xsl:for-each>
</ResultSet>
</xsl:template>
</xsl:stylesheet>
--------------------------------------------
現在は表示ぐらいまでならできました
これをyahooオークションで転用したいのですが
ASP.NETでググってもあまりHITしません
分かる方初心者ですがご教授願います
お礼
良いようですね。 私もせっかちなのでその一気に注ぐと・・をやってしまうかもしれません・・・笑 ヤオフクの件といいとてもよいことを教えてくださり感謝です ありがとうございました