如何查找从ASPDotNetStoreFront中调用特定存储过程的位置?

时间:2014-09-08 16:55:55

标签: aspdotnetstorefront

我是Storefront的新手。我有aspdotnetstorefront代码。有人可以告诉我,从哪里调用存储过程?

1 个答案:

答案 0 :(得分:0)

它通常位于任何aspx或xml文件的顶部

例如,在文件顶部查找产品,您可能会看到类似这样的内容

<query name="Products" rowElementName="Product">
    <sql>
        <![CDATA[
            exec Product_BestSellers 30, 10, @orderby, @StoreID, @FilterProduct
        ]]>
    </sql>

使用的存储过程将是正在运行的存储过程。这是Product_BestSellers