Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
SethKaminski committed Dec 18, 2015
1 parent 9ae93c0 commit 6e09fd7
Show file tree
Hide file tree
Showing 473 changed files with 178,473 additions and 80 deletions.
17 changes: 17 additions & 0 deletions CodePlay/App_Data/PublishProfiles/codeplay.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<LastUsedBuildConfiguration>Debug</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish />
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
<ExcludeApp_Data>False</ExcludeApp_Data>
<publishUrl>C:\Users\Seth\Desktop</publishUrl>
<DeleteExistingFiles>False</DeleteExistingFiles>
</PropertyGroup>
</Project>
17 changes: 12 additions & 5 deletions CodePlay/Catalog.aspx
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
<%@ Page Language="C#" MasterPageFile="~/BalloonShop.master"
<%@ Page Language="C#" MasterPageFile="~/Codeplay_MasterPage.master"
AutoEventWireup="true" CodeFile="Catalog.aspx.cs" Inherits="Catalog"
Title="BalloonShop - The Product Catalog" %>

<%@ Register Src="UserControls/ProductsList.ascx" TagName="ProductsList" TagPrefix="uc1" %>

<asp:Content ID="content" ContentPlaceHolderID="contentPlaceHolder" Runat="Server">
<asp:Content ID="content" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
<asp:Label ID="catalogTitleLabel" CssClass="CatalogTitle" Runat="server" />
<br />
<asp:Label ID="catalogDescriptionLabel" CssClass="CatalogDescription" Runat="server" />
<br />
<uc1:ProductsList ID="ProductsList1" runat="server" />
<div class="col-sm-6 col-md-4">


<div class="row">
<HeaderTemplate>
<div class="row">
</HeaderTemplate>

<FooterTemplate>
</div>
</FooterTemplate>
<uc1:ProductsList ID="ProductsList1" runat="server" />
</div>
</asp:Content>
5 changes: 3 additions & 2 deletions CodePlay/CodePlay.sln (2).sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "CodePlay", ".", "{F06B9C36-63FE-475E-A3EE-3B96394673A3}"
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "CodePlay(1)", "http://localhost:63658", "{F06B9C36-63FE-475E-A3EE-3B96394673A3}"
ProjectSection(WebsiteProperties) = preProject
UseIISExpress = "true"
TargetFrameworkMoniker = ".NETFramework,Version%3Dv4.5"
Debug.AspNetCompiler.VirtualPath = "/CodePlay"
Debug.AspNetCompiler.PhysicalPath = "..\CodePlay\"
Expand All @@ -18,7 +19,7 @@ Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "CodePlay", ".", "{F06B9C36-
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
VWDPort = "63658"
SlnRelativePath = "..\CodePlay\"
EndProjectSection
EndProject
Global
Expand Down
Binary file modified CodePlay/CodePlay.sln (2).v11.suo
Binary file not shown.
10 changes: 0 additions & 10 deletions CodePlay/CodePlay_Default.aspx

This file was deleted.

21 changes: 11 additions & 10 deletions CodePlay/Codeplay_MasterPage.master
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<%@ Register Src="UserControls/SearchBox.ascx" TagName="SearchBox" TagPrefix="uc4" %>
<%@ Register Src="UserControls/DepartmentsList.ascx" TagName="DepartmentsList" TagPrefix="uc2" %>
<%@ Register Src="UserControls/CategoriesList.ascx" TagName="CategoriesList" TagPrefix="uc3" %>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
Expand Down Expand Up @@ -55,21 +56,21 @@
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="CodePlay_Default.aspx"> HOME </a></li>
<li><a href="Default.aspx"> HOME </a></li>
<li><a href="CodePlay_AboutUs.aspx"> ABOUT US <span class="sr-only">(current)</span></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> CATEGORIES <span class="caret"></span></a>
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> Department <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="Action.html">Action</a></li>
<li><a href="Strategy.html">Strategy</a></li>
<li><a href="Puzzle.html">Puzzle</a></li>
<li><a href="RPG.html">Role Playing</a></li>
<li><a href="Music.html">Music and Party</a></li>
<li><a href="Sports.html">Sports</a></li>

<uc2:DepartmentsList ID="DepartmentsList1" runat="server" />
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> Category <span class="caret"></span></a>
<ul class="dropdown-menu">
<uc3:CategoriesList ID="CategoriesList1" runat="server" />
</ul>
</li>

</ul>
<div class="navbar-form navbar-left" role="search">
<!--<div class="form-group">
Expand All @@ -80,7 +81,7 @@
<uc4:SearchBox id="SearchBox1" runat="server"></uc4:SearchBox>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">YOUR CART</a></li>
<li><a href="ShoppingCart.aspx">YOUR CART</a></li>
<li class="dropdown">
<button type="button" class="btn btn-default navbar-btn">SIGN IN</button>
<button type="button" class="btn btn-default navbar-btn">REGISTER</button>
Expand Down
66 changes: 57 additions & 9 deletions CodePlay/Default.aspx
Original file line number Diff line number Diff line change
@@ -1,11 +1,59 @@
<%@ Page Language="C#" MasterPageFile="~/BalloonShop.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Title="Welcome to BalloonShop!" %>

<%@ Register Src="UserControls/ProductsList.ascx" TagName="ProductsList" TagPrefix="uc1" %>
<asp:Content ID="content" ContentPlaceHolderID="contentPlaceHolder" Runat="server">
<span class="CatalogTitle">Welcome to BalloonShop! </span>
<br />
<span class="CatalogDescription">This week we have a special price for these fantastic products: </span>
<br />
<uc1:ProductsList ID="ProductsList1" runat="server" />
<%@ Page Title="" Language="C#" MasterPageFile="~/Codeplay_MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="DefaultCodePlay" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder3" Runat="Server">

</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>

<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="ProductImages/84188_front.jpg" height="200">
<div class="carousel-caption">
<h3></h3>
</div>
</div>

<div class="item">
<img src="ProductImages/fifa15messi.jpg" height="200">
<div class="carousel-caption">
<h3></h3>
</div>
</div>

<div class="item">
<img src="ProductImages/Metal_Gear_Solid_V_Ground_Zeroes_main_promotional_art.jpg" height="200">
<div class="carousel-caption">
<h3></h3>
</div>
</div>

<div class="item">
<img src="ProductImages/P4D-JP-Box-Art_03-25-15.jpg" height="200">
<div class="carousel-caption">
<h3>/h3>
</div>
</div>
</div>

<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</asp:Content>

14 changes: 5 additions & 9 deletions CodePlay/Default.aspx.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
public partial class DefaultCodePlay : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
}
}
79 changes: 60 additions & 19 deletions CodePlay/Product.aspx
Original file line number Diff line number Diff line change
@@ -1,25 +1,66 @@
<%@ Page Language="C#" MasterPageFile="~/BalloonShop.master" AutoEventWireup="true"
<%@ Page Language="C#" MasterPageFile="~/Codeplay_MasterPage.master" AutoEventWireup="true"
CodeFile="Product.aspx.cs" Inherits="Product" Title="Untitled Page" %>

<%@ Register Src="UserControls/ProductRecommendations.ascx" TagName="ProductRecommendations"
TagPrefix="uc1" %>
<asp:Content ID="content" ContentPlaceHolderID="contentPlaceHolder" runat="Server">
<br />
<asp:Label CssClass="ProductTitle" ID="titleLabel" runat="server" Text="Label"></asp:Label>
<br />
<br />
<asp:Image ID="productImage" runat="server" />
<br />
<asp:Label CssClass="ProductDescription" ID="descriptionLabel" runat="server" Text="Label"></asp:Label>
<br />
<br />
<span class="ProductDescription">Price:</span>&nbsp;
<asp:Label CssClass="ProductPrice" ID="priceLabel" runat="server" Text="Label" />
<br />
<asp:Button ID="addToCartButton" runat="server" Text="Add to Cart" CssClass="SmallButtonText" OnClick="addToCartButton_Click" />
<asp:Button ID="continueShoppingButton" CssClass="SmallButtonText" runat="server" Text="Continue Shopping" OnClick="continueShoppingButton_Click" />
<br />
<br />
<uc1:ProductRecommendations id="ProductRecommendations1" runat="server">
<asp:Content ID="content" ContentPlaceHolderID="contentPlaceHolder2" runat="Server">
<br><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<font size=20>
<span class="label label-default">
<asp:Label ID="titleLabel" runat="server" Text="Label"></asp:Label>
</span>
</font>
<br><br>
<table>
<tr>
<td rowspan="2" style="padding:25px">
<asp:Image class="img-rounded" ID="productImage" runat="server" />
</td>
<td width="350px" height="75%" style="padding:25px" valign="top">
<asp:Label ID="descriptionLabel" runat="server" Text="Label"></asp:Label>
</td>
</tr>
<tr>

<td style="padding:25px" valign="Bottom">
<asp:Label CssClass="ProductPrice" ID="priceLabel" runat="server" Text="Label" />
</td>
</tr>

<tr >
<td style="padding:10px">
<asp:Button ID="addToCartButton" runat="server"
Text="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Add To Cart &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
class="btn btn-default btn-lg" OnClick="addToCartButton_Click" />
<asp:Button ID="continueShoppingButton" class="btn btn-default btn-lg" runat="server" Text="Continue Shopping" OnClick="continueShoppingButton_Click" />
</td>
<td>

</td>
</tr>
</table>

<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" CellPadding="4" DataKeyNames="REVIEWID" DataSourceID="SqlDataSource1" ForeColor="#333333" GridLines="None" Width="937px">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<Columns>
<asp:BoundField DataField="REVIEWID" HeaderText="REVIEWID" ReadOnly="True" SortExpression="REVIEWID" />
<asp:BoundField DataField="DESCRIPTION" HeaderText="DESCRIPTION" SortExpression="DESCRIPTION" />
<asp:BoundField DataField="RATING" HeaderText="RATING" SortExpression="RATING" />
</Columns>
<EditRowStyle BackColor="#999999" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:BalloonShopConnection %>" ProviderName="<%$ ConnectionStrings:BalloonShopConnection.ProviderName %>" SelectCommand="SELECT &quot;REVIEWID&quot;, &quot;DESCRIPTION&quot;, &quot;RATING&quot; FROM &quot;REVIEW&quot;"></asp:SqlDataSource>

<uc1:ProductRecommendations id="ProductRecommendations1" runat="server">
</uc1:ProductRecommendations>
</asp:Content>
1 change: 1 addition & 0 deletions CodePlay/Product.aspx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public partial class Product : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GridView1.PageSize = 5;
// don't reload data during postbacks
if (!IsPostBack)
{
Expand Down
Binary file removed CodePlay/ProductImages/0276001.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0326801.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0366101.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/03944l.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/03945L.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0510801.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0521201.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0522101.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0611401.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0661701.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0704901.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/0707401.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/114103P.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/114118p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/114208p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/115343P.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/1368601.jpg
Binary file not shown.
Binary file added CodePlay/ProductImages/154547_front.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed CodePlay/ProductImages/16110p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16118p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16148p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16151p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16162p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16363p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16558p.jpg
Binary file not shown.
Binary file removed CodePlay/ProductImages/16744p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16756p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16772p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16809p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16862p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16864p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16967p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16973p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16974p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16980p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/16988p.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/178414-portal.jpg
Binary file removed CodePlay/ProductImages/214006p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/214041p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/214046p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/214154p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/214168p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/215017p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/215302p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/215402p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/21825b.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/22849b.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/2509813-daiart.jpg
Binary file removed CodePlay/ProductImages/26013.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/28734.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/35732.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/38196.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/38199.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/38202.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/42014.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/42080.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/42139.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/45093.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/68841b.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/7004801.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/7008501.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/81947pl.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/81KVclgl3WL._SL1500_.jpg
Binary file removed CodePlay/ProductImages/83947.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/83951.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/84188_front.jpg
Binary file added CodePlay/ProductImages/8b64efb121.jpg
Binary file added CodePlay/ProductImages/Box_Art.jpg
Binary file removed CodePlay/ProductImages/Koala.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/LemmingsGen.jpg
Binary file removed CodePlay/ProductImages/Penguins.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/Puzzle_quest_PSP.jpg
Binary file added CodePlay/ProductImages/Skyrim_Cover.jpg
Binary file removed CodePlay/ProductImages/a1180401.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/arkham-knight.jpg
Binary file added CodePlay/ProductImages/blackops3.jpg
Binary file added CodePlay/ProductImages/cover_1large.jpg
Binary file added CodePlay/ProductImages/cover_large (1).jpg
Binary file added CodePlay/ProductImages/cover_large.jpg
Binary file added CodePlay/ProductImages/fifa15messi.jpg
Binary file added CodePlay/ProductImages/mlbshow15box.jpg
Binary file added CodePlay/ProductImages/pes-2014-pc-cover.jpg
Binary file removed CodePlay/ProductImages/t0276001.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0326801.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0366101.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t03944l.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t03945L.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0510801.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0521201.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0522101.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0611401.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0661701.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0704901.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t0707401.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t114103p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t114118p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t114208p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t115343p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t1368601.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16110p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16118p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16148p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16151p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16162p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16363p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16558p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16744p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16756p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16772p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16809p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16862p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16864p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16967p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16973p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16974p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16980p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t16988p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t214006p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t214041p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t214046p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t214154p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t214168p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t215017p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t215302p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t215402p.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t21825b.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t22849b.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t26013.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t28734.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t35732.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t38196.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t38199.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t38202.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t42014.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t42080.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t42139.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t45093.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t68841b.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t7004801.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t7008501.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t81947pl.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t83947.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/t83951.jpg
Diff not rendered.
Binary file removed CodePlay/ProductImages/ta1180401.jpg
Diff not rendered.
Binary file added CodePlay/ProductImages/valkyria.jpg
4 changes: 2 additions & 2 deletions CodePlay/Search.aspx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%@ Page Language="C#" MasterPageFile="~/BalloonShop.master" AutoEventWireup="true" CodeFile="Search.aspx.cs" Inherits="Search" Title="Untitled Page" %>
<%@ Page Language="C#" MasterPageFile="~/Codeplay_MasterPage.master" AutoEventWireup="true" CodeFile="Search.aspx.cs" Inherits="Search" Title="Untitled Page" %>

<%@ Register Src="UserControls/ProductsList.ascx" TagName="ProductsList" TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="contentPlaceHolder" Runat="Server">
<asp:Content ID="Content1" ContentPlaceHolderID="contentPlaceHolder2" Runat="Server">
<asp:Label ID="titleLabel" runat="server" CssClass="CatalogTitle"></asp:Label><br />
<asp:Label ID="descriptionLabel" runat="server" CssClass="CatalogDescription"></asp:Label><br /><br />
<uc1:productslist id="ProductsList1" runat="server"></uc1:productslist>
Expand Down
4 changes: 2 additions & 2 deletions CodePlay/ShoppingCart.aspx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<%@ Page Language="C#" MasterPageFile="~/BalloonShop.master" AutoEventWireup="true" CodeFile="ShoppingCart.aspx.cs" Inherits="ShoppingCart" Title="Untitled Page" %>
<%@ Page Language="C#" MasterPageFile="~/Codeplay_MasterPage.master" AutoEventWireup="true" CodeFile="ShoppingCart.aspx.cs" Inherits="ShoppingCart" Title="Untitled Page" %>

<%@ Register Src="UserControls/ProductRecommendations.ascx" TagName="ProductRecommendations"
TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="contentPlaceHolder" Runat="Server">
<asp:Content ID="Content1" ContentPlaceHolderID="contentPlaceHolder2" Runat="Server">
<asp:Label ID="titleLabel" runat="server" Text="Your Shopping Cart" CssClass="ShoppingCartTitle" />
<br />
<asp:Label ID="statusLabel" CssClass="AdminPageText" ForeColor="Red" runat="server" /><br />
Expand Down
12 changes: 4 additions & 8 deletions CodePlay/UserControls/CategoriesList.ascx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="CategoriesList.ascx.cs" Inherits="CategoriesList" %>
<asp:DataList ID="list" runat="server" CssClass="CategoryListContent" Width="200px">
<asp:ListView ID="list" runat="server">
<ItemTemplate>
&nbsp;&raquo;
<li>
<asp:HyperLink
ID="HyperLink1"
Runat="server"
Expand All @@ -10,11 +10,7 @@
ToolTip='<%# Eval("Description") %>'
CssClass='<%# Eval("CategoryID").ToString() == Request.QueryString["CategoryID"] ? "CategorySelected" : "CategoryUnselected" %>'>>
</asp:HyperLink>
&nbsp;&laquo;
</li>
</ItemTemplate>
<HeaderTemplate>
Choose a Category
</HeaderTemplate>
<HeaderStyle CssClass="CategoryListHead" />
</asp:DataList><asp:Label ID="brLabel" runat="server" Text="" />
</asp:ListView><asp:Label ID="brLabel" runat="server" Text="" />

9 changes: 5 additions & 4 deletions CodePlay/UserControls/ProductsList.ascx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
<asp:HyperLink ID="previousLink" runat="server" CssClass="PagingText" Visible="false">Previous</asp:HyperLink>
&nbsp;&nbsp;
<asp:HyperLink ID="nextLink" runat="server" CssClass="PagingText" Visible="false">Next</asp:HyperLink>
<asp:DataList ID="list" Runat="server" RepeatColumns="2" EnableViewState="False" OnItemCommand="list_ItemCommand">

<asp:ListView ID="list" Runat="server">
<ItemTemplate>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href='Product.aspx?ProductID=<%# Eval("ProductID")%>'>
<img width="100" src='ProductImages/<%# Eval("Thumbnail") %>' border="0"/>
<img width="100" src='ProductImages/<%# Eval("Thumbnail") %>'/>
</a>
<div class="caption">
<a class="ProductName" href='Product.aspx?ProductID=<%# Eval("ProductID")%>'>
Expand All @@ -20,10 +21,10 @@
<p><%# Eval("Description") %></p>
<p><%# Eval("Price", "{0:c}") %></p>
<p>
<asp:Button ID="Button1" runat="server" Text="Add to Cart" CommandArgument='<%# Eval("ProductID") %>' class="btn btn-primary"/>
<asp:Button ID="Button1" runat="server" Text="Add to Cart" OnClick="addToCartButton_Click" class="btn btn-primary"/>
</p>
</div>
</div>
</div>
</ItemTemplate>
</asp:DataList>
</asp:ListView>
Loading

0 comments on commit 6e09fd7

Please sign in to comment.