Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: XML Package Help - WILL PAY FOR HELP $75

  1. #1
    HomeIndoor is offline Member
    Join Date
    Nov 2008
    Posts
    64

    Exclamation XML Package Help - WILL PAY FOR HELP $75

    Please take a look at the following xml tracking code that was developed for us.
    We need to set it up to work with a new tracking company. When running it I get the follow error

    Exception=The type or namespace name 'Customer' could not be found (are you missing a using directive or an assembly reference?)

    We are trying to set this up to work with the following tracking code

    <img src="your1pixelimg.gif" id="zmam=79922539&zmas=1&zmaq=N&quantity=[QuantityVariable]&pcode=[Product Code Variable]&zman=[OrderNumber Variable]&zmat=[OrderTotal Variable]" width=0 height=0 border=0>

    <script language="JavaScript" src="https://secure.merchantadvantage.com/inChannel/ma2q.js"></script>

    Can pay $75 for help in this matter

    I know that I have to change the variable to the correct data, but even after making these changes, I still get this error.
    Attached Files Attached Files

  2. #2
    webopius is offline Senior Member
    Join Date
    Nov 2008
    Location
    London, UK
    Posts
    440

    Default

    Hi

    Well, it's not often that I see C# embedded within ASPDNSF XMLPackages...

    If you are running MLv8 or 9, see if this works:

    Change this block:

    <msxsl:assembly name="AspDotNetStorefrontCommon"/>
    <msxsl:assembly name="App_Code"/>
    <msxsl:assembly name="System.Web"/>
    <msxsl:using namespace="AspDotNetStorefrontCommon"/>
    <msxsl:using namespace="AspDotNetStorefront"/>

    To this:

    <msxsl:assembly name="AspDotNetStorefrontCommon"/>
    <msxsl:assembly name="AspDotNetStorefrontCore"/>
    <msxsl:assembly name="App_Code"/>
    <msxsl:assembly name="System.Web"/>
    <msxsl:using namespace="AspDotNetStorefrontCommon"/>
    <msxsl:using namespace="AspDotNetStorefrontCore"/>
    <msxsl:using namespace="AspDotNetStorefront"/>


    Hope this helps,

    Adam.