Hi,
iam having online shopping site.I want to add quick view for my products.This is my code for that.
I want to pass the href url to this.prop().But when i debug the image url is not passed.Can any one tell me how to pass the url of an image?
@model ProductOverviewModel
@using Nop.Core.Domain.Orders
@using Nop.Web.Models.Catalog;
@{
//prepare "Add to cart" AJAX link
string addtocartlink = "";
var shoppingCartTypeId = (int)ShoppingCartType.ShoppingCart;
var quantity = 1;
if (Model.ProductPrice.ForceRedirectionAfterAddingToCart)
{
addtocartlink = Url.RouteUrl("AddProductToCart", new { productId = Model.Id, shoppingCartTypeId = shoppingCartTypeId, quantity = quantity, forceredirection = Model.ProductPrice.ForceRedirectionAfterAddingToCart });
}
else
{
addtocartlink = Url.RouteUrl("AddProductToCart", new { produc ...
Go to the complete details ...