- <%@ Page Title="Smart Traveller - Search" Language="C#" MasterPageFile="~/STMaster.master" AutoEventWireup="true" CodeFile="Search.aspx.cs" Inherits="Search" %>
- <%@ Register Src="~/GoogleMapForASPNet.ascx" TagName="GoogleMapForASPNet" TagPrefix="uc1" %>
- <asp:Content ID="cntSearchHead" ContentPlaceHolderID="cntSTMasterHead" Runat="Server">
- </asp:Content>
- <asp:Content ID="cntSearchBody" ContentPlaceHolderID="cntSTMasterBody" Runat="Server">
- <br /><br /><br />
- <div style="padding:20px 15px 30px 15px;">
- <h1 class="inner">Search</h1>
- <div> <strong> <br /></strong><br /><br /></div>
- <table width="600px" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="300px" height="35px">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="100px" align="right">
- Package Type:
- </td>
- <td width="200px" align="left">
- <asp:DropDownList ID="ddlPackageType" runat="server" Width="150px">
- <asp:ListItem Selected="True" Text="Family Package" Value="Family Package"></asp:ListItem>
- <asp:ListItem Text="Holiday Package" Value="Family Package"></asp:ListItem>
- <asp:ListItem Text="Honeymoon Package" Value="Family Package"></asp:ListItem>
- </asp:DropDownList>
- </td>
- </tr>
- </table>
- </td>
- <td width="300px">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="100px" align="right">
- Price Range:
- </td>
- <td width="200px" align="left">
- <asp:TextBox ID="txtFrom" runat="server" Width="50px"></asp:TextBox> To
- <asp:TextBox ID="txtTo" runat="server" Width="50px"></asp:TextBox>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td width="300px" height="35px">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="100px" align="right">
- Total Members:
- </td>
- <td width="200px" align="left">
- <asp:DropDownList ID="ddlTotalMembers" runat="server" Width="150px">
- <asp:ListItem Selected="True" Text="1" Value="1"></asp:ListItem>
- <asp:ListItem Text="2" Value="2"></asp:ListItem>
- <asp:ListItem Text="3" Value="3"></asp:ListItem>
- <asp:ListItem Text="4" Value="4"></asp:ListItem>
- <asp:ListItem Text="5" Value="5"></asp:ListItem>
- <asp:ListItem Text="More than 5" Value="More than 5"></asp:ListItem>
- <asp:ListItem Text="More than 10" Value="More than 10"></asp:ListItem>
- </asp:DropDownList>
- </td>
- </tr>
- </table>
- </td>
- <td width="300px">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="100px" align="right">
- Total Days:
- </td>
- <td width="200px" align="left">
- <asp:TextBox ID="txtTotalDays" runat="server" Width="140px"></asp:TextBox>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2" align="center" height="50px" valign="middle">
- <br /><br />
- <asp:Button ID="btnSearch" runat="server" Text="Search" CssClass="button"
- ValidationGroup="VGSearch" onclick="btnSearch_Click" /></td>
- </tr>
- </table>
- <br /><br /><br />
- <h1 class="inner">Search Results</h1>
- <div> <strong> <br /></strong><br /><br /></div>
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td style="font-size: 16px; color: Green; height: 35px;">
- Package Name: Family Gold Pack
- </td>
- </tr>
- <tr>
- <td style="font-size: 12px; height: 20px;">
- Package Type: Family Package Price: 20000
- </td>
- </tr>
- <tr>
- <td style="font-size: 12px; height: 20px;">
- Total Members: Total Days: 5
- </td>
- </tr>
- <tr>
- <td style="font-size: 12px; height: 20px;">
- Places: Kerala, Chennai, Goa <asp:LinkButton
- ID="btnViewMap" runat="server" onclick="btnViewMap_Click">View Map</asp:LinkButton>
- </td>
- </tr>
- </table>
- </div>
- <br /><br /><br />
- <uc1:GoogleMapForASPNet ID="GoogleMapForASPNet1" runat="server" Visible="false" />
- <br /><br /><br />
- </asp:Content>