Hi,
I think we ran into a bug with the Item list tag (http://templates.dynamicweb.com/TemplateTags/Dynamicweb-template-tags/Module-tags/Item-publisher/Item-Render.aspx)
When we apply a filter to the Item Publisher list, it seems the template engine is trying to parse the filter value. Through an integration process we got very large product ID numbers. Example: ProductID=88880091230 renders the error in attach
Here's what the code:
string str_productFilter = "Product=" + str_productID;
...
@RenderItemList(new {
ItemType = "Reviews",
ListSourceType = "NamedList",
NamedListPageID = Convert.ToInt32(item["Reviews"].ToString()),
TargetNamedList = "Reviews",
ItemFieldsList = "*",
ListTemplate = "ItemPublisher/List/productReviewsList.cshtml",
ListPageSize = 999,
ListOrderBy = "Product",
Filter = @str_productFilter
})
Now, it the productNumber where to be a string, there was no problem. If the tag was parsed as a string, despite being a number, there wouldn't be an issue.
Best Regards,
Nuno Aguiar
