ertebat
یک شنبه 21 شهریور 1389, 00:27 صبح
سلام من برای سبد خرید از اینترنت این کد رو جستجو کردم ولی لیست کالاهای من با گرید ویو نشون داده میشه لطف کنید بگید این کد برای گرید ویو باید چطور تغییر کنه
protected void btnAddToCart_Click(object sender,
ImageClickEventArgs e)
{
double Price = double.Parse((
(Label)DataList1.Controls[0].FindControl("PriceLabel")).Text);
string ProductName =
((Label)DataList1.Controls[0].FindControl("NameLabel")).Text;
string PictureURL =
((Label)DataList1.Controls[0].FindControl(
"PictureUrlLabel")).Text;
int ProductID = int.Parse(Request.QueryString["ProductID"]);
if (Profile.Cart == null)
{
Profile.Cart = new Wrox.Commerce.ShoppingCart();
}
Profile.Cart.Insert(ProductID, Price, 1, ProductName,
PictureURL);
Server.Transfer("WroxShop.aspx");
}
protected void btnAddToCart_Click(object sender,
ImageClickEventArgs e)
{
double Price = double.Parse((
(Label)DataList1.Controls[0].FindControl("PriceLabel")).Text);
string ProductName =
((Label)DataList1.Controls[0].FindControl("NameLabel")).Text;
string PictureURL =
((Label)DataList1.Controls[0].FindControl(
"PictureUrlLabel")).Text;
int ProductID = int.Parse(Request.QueryString["ProductID"]);
if (Profile.Cart == null)
{
Profile.Cart = new Wrox.Commerce.ShoppingCart();
}
Profile.Cart.Insert(ProductID, Price, 1, ProductName,
PictureURL);
Server.Transfer("WroxShop.aspx");
}