<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do I add multiple lines in product description with SIM and C#? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34810#M19230</link>
    <description>&lt;P&gt;Thats exactly what I needed. &amp;nbsp;Thank you so much!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2013 20:03:12 GMT</pubDate>
    <dc:creator>5kwatts</dc:creator>
    <dc:date>2013-06-28T20:03:12Z</dc:date>
    <item>
      <title>How do I add multiple lines in product description with SIM and C#?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34808#M19228</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I had multiple lines to the product descripting with x_line_item in C#? &amp;nbsp;Following the guide,&amp;nbsp;&lt;A href="http://www.authorize.net/support/SIM_guide.pdf" target="_blank"&gt;SIM Guide&lt;/A&gt;,&amp;nbsp;&lt;A href="http://www.authorize.net/support/SIM_guide.pdf" target="_blank"&gt;&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adding to the ASP page:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;input&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"hidden"&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"x_line_item"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;value&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"item1&amp;lt;|&amp;gt;golf&amp;nbsp;balls&amp;lt;|&amp;gt;&amp;lt;|&amp;gt;2&amp;lt;|&amp;gt;18.95&amp;lt;|&amp;gt;Y"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;input&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"hidden"&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"x_line_item"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;value&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"item2&amp;lt;|&amp;gt;golf&amp;nbsp;bag&amp;lt;|&amp;gt;Wilson&amp;nbsp;golf&amp;nbsp;carry&amp;nbsp;bag,&amp;nbsp;red&amp;lt;|&amp;gt;1&amp;lt;|&amp;gt;39.99&amp;lt;|&amp;gt;Y"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;input&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"hidden"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"x_line_item"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;value&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"item3&amp;lt;|&amp;gt;book&amp;lt;|&amp;gt;Golf&amp;nbsp;for&amp;nbsp;Dummies&amp;lt;|&amp;gt;1&amp;lt;|&amp;gt;21.99&amp;lt;|&amp;gt;Y"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Works perfectly and displays all three items. &amp;nbsp;But&amp;nbsp;&lt;SPAN&gt;I can't change the values from the ASP page from other values. &amp;nbsp;They have to be hardcoded.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doing:&lt;/P&gt;&lt;PRE&gt;&amp;lt;input&amp;nbsp;type="hidden"&amp;nbsp;runat="server"&amp;nbsp;name="x_line_item"&amp;nbsp;id="x_line_item"/&amp;gt;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then in C#&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;x_line_item.Value&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;"Payment&amp;lt;|&amp;gt;Policy&amp;nbsp;Premium&amp;lt;|&amp;gt;&amp;lt;|&amp;gt;1&amp;lt;|&amp;gt;100&amp;lt;|&amp;gt;N&amp;amp;"&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;P&gt;Works perfectly and allows me to input whatever values from the code in there but only allows one value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help on this is appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2013 18:18:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34808#M19228</guid>
      <dc:creator>5kwatts</dc:creator>
      <dc:date>2013-06-28T18:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add multiple lines in product description with SIM and C#?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34809#M19229</link>
      <description>&lt;P&gt;&lt;A href="http://community.developer.authorize.net/t5/Integration-and-Testing/Trouble-submitting-itemized-order-information-for-SIM-using-ASP/m-p/8836/highlight/true#M5942" target="_blank"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/Trouble-submitting-itemized-order-information-for-SIM-using-ASP/m-p/8836/highlight/true#M5942&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2013 19:29:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34809#M19229</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-06-28T19:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add multiple lines in product description with SIM and C#?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34810#M19230</link>
      <description>&lt;P&gt;Thats exactly what I needed. &amp;nbsp;Thank you so much!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2013 20:03:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-do-I-add-multiple-lines-in-product-description-with-SIM-and/m-p/34810#M19230</guid>
      <dc:creator>5kwatts</dc:creator>
      <dc:date>2013-06-28T20:03:12Z</dc:date>
    </item>
  </channel>
</rss>

