Click here to Skip to main content
15,895,192 members
Articles / Programming Languages / Visual Basic

Implementing Amazon Web Services in VB.NET

Rate me:
Please Sign up or sign in to vote.
4.59/5 (18 votes)
10 Sep 20035 min read 145.7K   1.1K   39  
Article shows implementing Amazon web service in VB.NET.
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="AmazonService.aspx.vb" Inherits="amazonproject.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
	<HEAD>
		<title>AmazonService</title>
		<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
		<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
		<meta name="vs_defaultClientScript" content="JavaScript">
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
	</HEAD>
	<body MS_POSITIONING="GridLayout">
		<form id="Form1" method="post" runat="server">
			<asp:Label id="lblKeywordSearch" style="Z-INDEX: 101; LEFT: 59px; POSITION: absolute; TOP: 14px" runat="server">Keyword Search</asp:Label>
			<asp:Label id="lblKeyword" style="Z-INDEX: 102; LEFT: 61px; POSITION: absolute; TOP: 48px" runat="server">keyword</asp:Label>
			<asp:Label id="lblMode" style="Z-INDEX: 103; LEFT: 63px; POSITION: absolute; TOP: 86px" runat="server">mode</asp:Label>
			<asp:TextBox id="txtKeyword" style="Z-INDEX: 104; LEFT: 127px; POSITION: absolute; TOP: 46px" runat="server"></asp:TextBox>
			<asp:TextBox id="txtMode" style="Z-INDEX: 105; LEFT: 126px; POSITION: absolute; TOP: 84px" runat="server"></asp:TextBox>
			<asp:Button id="Search" style="Z-INDEX: 106; LEFT: 126px; POSITION: absolute; TOP: 121px" runat="server" Text="Search"></asp:Button>
			<asp:datagrid id="Datagrid1" runat="server" BorderColor="#C00000" BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="4" AutoGenerateColumns="False" style="Z-INDEX: 107; LEFT: 56px; POSITION: absolute; TOP: 159px" Width="387px" Height="194px">
				<HeaderStyle Font-Bold="True" ForeColor="#C00000" BackColor="Olive"></HeaderStyle>
				<FooterStyle ForeColor="#330099" BackColor="#FFFFCC"></FooterStyle>
				<Columns>
					<asp:TemplateColumn>
						<ItemTemplate>
							<asp:Image ImageUrl='<%# Container.DataItem("image") %>' Runat="server" ID="Image1"/>
						</ItemTemplate>
					</asp:TemplateColumn>
					<asp:BoundColumn DataField="ProductName" HeaderText="Product"></asp:BoundColumn>
					<asp:BoundColumn DataField="Authors" HeaderText="Author"></asp:BoundColumn>
					<asp:BoundColumn DataField="Price" HeaderText="Price"></asp:BoundColumn>
				</Columns>
			</asp:datagrid>
		</form>
	</body>
</HTML>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Architects softwares with emerging technologies that will save time and increase productivity.

Comments and Discussions