
Add a gift shop to your ASP.NET application
By:
priore on
May 29th, 2012 | syntax:
C# | size: 0.87 KB | hits: 55 | expires: Never
// With MYZazzleStore Library for ASP.NET it's really simple to add a gift shop to your ASP.NET application for your users.
// With a few lines of code you can give your users the opportunity to purchase T-shirts personalized
// mugs, iphone / ipad covers and other types of gifts. It also allows you to increase financial gains
// and increase the popularity of your products.
//
// look for source code : https://github.com/priore/MYZazzleStore-for-ASP.NET
//ASP.NET page
<%@ Register Assembly="Priore.Web.MYZazzleStore"
Namespace="Priore.Web.MYZazzleStore" TagPrefix="priore" %>
<priore:MYZazzleStoreTable ID="zazzle"
OnProductClick="zazzle_ProductClick" runat="server">
</priore:MYZazzleStoreTable>
//C# ASP.NET Source
protected void zazzle_ProductClick(object sender, string productId)
{
zazzle.ImageLink = "http://my-domain.com/my-image.jpg"
}