111,094
社区成员




<table id="tabContent">
<tr>
<td>
<asp:Label ID="Title" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Des" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td align="left">
<h2 style="font-weight: bold">
What's It Worth?
</h2>
</td>
<td>
<uc:EstimatedValue ID="EstimatedValue" runat="server" />
</td>
</tr>
<tr>
<td align="left">
<h2 style="font-weight: bold">
Real Market Data
</h2>
</td>
<td>
</td>
</tr>
<tr>
<td align="left">
<h2 style="font-weight: bold">
IGUIDE ABOUT US</h2>
<p style="font-weight: bold">
iGuide is an encyclopedia of antiques and collectibles, with prices. The I is for
INFO. iGuide is millions of WEB pages, each devoted to an individual object in the
Art, Antiques, Collectibles and Memorabilia fields. Dozens of categories are included
in the database, from action figures and baseball cards, comic books to movie posters,
zippo lighters, and everything in between. And we are growing! New pages are being
added daily. iGuide empowers you with price information. iGuide gives you an edge.
You'll buy smarter, and sell smarter.
</p>
<br />
<h2 style="font-weight: bold">
Visit us at<a href="http://www.iguide.net"> www.IGUIDE.NET</a></h2>
</td>
</tr>
<tr>
<td align="center">
<input id="Button1" type="button" value="Print" onclick="Print();" style="width: 100px;
height: 34px" runat="server" />
<asp:Button id="btnclose" Text="Close" runat="server" OnClick="Back" style="width: 100px;
height: 34px;" />
</td>
</tr>
</table>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.Sql;
public partial class price_guide_Print : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Back(object sender, EventArgs e)
{
Response.Redirect("Details.aspx?ItemID=" + Request.QueryString["ItemID"]);
}
}