【问题标题】:How to find From where a specific stored procedure is called in ASPDotNetStoreFront?如何查找在 ASPDotNetStoreFront 中调用特定存储过程的位置?
【发布时间】:2014-09-08 16:55:55
【问题描述】:

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

【问题讨论】:

    标签: aspdotnetstorefront


    【解决方案1】:

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

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

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

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

    【讨论】:

    • 澄清一下:“xml 文件”是 XSLT 文件,以 .xml.config 结尾。
    猜你喜欢
    • 1970-01-01
    • 2015-04-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2010-10-15
    • 2017-02-01
    相关资源
    最近更新 更多