<?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: Need my custom Thank you page after payment submitted instead of inbuilt thank you page in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88621#M55844</link>
    <description>&lt;P&gt;Respected sir, Your solution not working for me.Please suggest.&lt;/P&gt;</description>
    <pubDate>Sat, 13 Jan 2024 16:46:36 GMT</pubDate>
    <dc:creator>cgsshankar</dc:creator>
    <dc:date>2024-01-13T16:46:36Z</dc:date>
    <item>
      <title>Need my custom Thank you page after payment submitted instead of inbuilt thank you page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88411#M55716</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;I am successfully charging cc details through Hosted payment redirect method c# code.&lt;/P&gt;&lt;P&gt;But I want to redirect my custom thank you page as someone fills cc details on payment form.&lt;/P&gt;&lt;P&gt;I want to skip your inbuilt thank you page. How can I do that? Please help.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Dec 2023 21:49:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88411#M55716</guid>
      <dc:creator>cgsshankar</dc:creator>
      <dc:date>2023-12-24T21:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need my custom Thank you page after payment submitted instead of inbuilt thank you page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88413#M55718</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;To redirect to your custom thank-you page instead of the built-in one after processing a payment through the Hosted Payment Redirect method in C#, you'll need to adjust the redirect URL in your code.&lt;/P&gt;
&lt;P&gt;Typically, after a successful payment submission, there should be a section in your code that handles the redirection. Locate the point where the redirection URL is set and replace it with the URL of your custom thank-you page.&lt;/P&gt;
&lt;P&gt;For example, if you are using a response object or a redirection URL, modify it to point to your custom page:&lt;/P&gt;
&lt;P&gt;Make sure to replace the placeholder URLs with the actual URLs of your pages.&lt;/P&gt;
&lt;P&gt;If you have specific sections of code that handle the redirection, you may need to review and modify those areas accordingly. If you encounter any difficulties or need further assistance, feel free to provide more details or consult the documentation of the payment service you are using for specific implementation guidance.&lt;/P&gt;
&lt;P&gt;// Existing code for redirection string redirectUrl = "&lt;/P&gt;
&lt;P&gt;// Existing code for redirection&lt;BR /&gt;string redirectUrl = "htt&lt;SPAN&gt;ps://ww&lt;SPAN&gt;w.builtinthankyoupage.&lt;SPAN&gt;com";&lt;BR /&gt;// Update to your custom thank-you page URL&lt;BR /&gt;string customThankYouPageUrl = "htt&lt;SPAN&gt;ps://ww&lt;SPAN&gt;w.yourcustomthankyoupage.&lt;SPAN&gt;com";&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;if (paymentIsSuccessful)&lt;BR /&gt;{&lt;BR /&gt;// Redirect to your custom thank-you page&lt;BR /&gt;Response.Redirect(customThankYouPageUrl);&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;// Redirect to the built-in thank-you page or handle other scenarios&lt;BR /&gt;Response.Redirect(redirectUrl);&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;"; // Update to your custom thank-you page URL string customThankYouPageUrl = "htt&lt;SPAN&gt;ps://ww&lt;SPAN&gt;w.yourcustomthankyoupage.&lt;SPAN&gt;com"; if (paymentIsSuccessful) { // Redirect to your custom thank-you page Response.Redirect(customThankYouPageUrl); } else { // Redirect to the built-in thank-you page or handle other scenarios Response.Redirect(redirectUrl); }&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 00:16:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88413#M55718</guid>
      <dc:creator>jhoney12</dc:creator>
      <dc:date>2023-12-26T00:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need my custom Thank you page after payment submitted instead of inbuilt thank you page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88421#M55722</link>
      <description>&lt;P&gt;Check for a Built-in Setting:&lt;/P&gt;&lt;P&gt;Many payment gateways offer a setting within their configuration or dashboard to specify a custom thank you page URL.&lt;BR /&gt;Access your payment gateway's settings and look for an option to enable a custom thank you page.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 06:15:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88421#M55722</guid>
      <dc:creator>ativadore</dc:creator>
      <dc:date>2023-12-27T06:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need my custom Thank you page after payment submitted instead of inbuilt thank you page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88604#M55835</link>
      <description>&lt;P&gt;Respected sir,&lt;/P&gt;
&lt;P&gt;How to send directly to my thank you page after payment? I am using authorize.net housted page method c# code.&lt;BR /&gt;My below code sending me to inbuilt thank you page.Their is continue button.After clicking continue button it is going to my custom thank you page.&lt;BR /&gt;I want directly to go to my custom thank you page.I dont want continue buton extra step. Please help in my below code as I am stuck here from last 2 months. My code is below.&lt;BR /&gt;-------------------------------------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;settingType[] settings = new settingType[3];&lt;/P&gt;
&lt;P&gt;settings[0] = new settingType();&lt;BR /&gt;settings[0].settingName = settingNameEnum.hostedPaymentButtonOptions.ToString();&lt;BR /&gt;settings[0].settingValue = "{\"text\": \"Pay Now\"}";&lt;/P&gt;
&lt;P&gt;settings[1] = new settingType();&lt;BR /&gt;settings[1].settingName = settingNameEnum.hostedPaymentOrderOptions.ToString();&lt;BR /&gt;settings[1].settingValue = "{\"show\": false}";&lt;/P&gt;
&lt;P&gt;settings[2] = new settingType();&lt;BR /&gt;settings[2].settingName = settingNameEnum.hostedPaymentReturnOptions.ToString();&lt;BR /&gt;settings[2].settingValue = "{\"showReceipt\": false,\"url\": \"htt&lt;SPAN&gt;ps://mysite.&lt;SPAN&gt;com?id=" + txtinvoiceno+ "\",\"cancelUrl\": \"&amp;lt;htt&lt;SPAN&gt;ps://mysite.&lt;SPAN&gt;com/cancel\"} ";&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;-----------------------------------------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;Please help I tried my best but not successfull.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 01:05:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88604#M55835</guid>
      <dc:creator>cgsshankar</dc:creator>
      <dc:date>2024-01-13T01:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need my custom Thank you page after payment submitted instead of inbuilt thank you page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88621#M55844</link>
      <description>&lt;P&gt;Respected sir, Your solution not working for me.Please suggest.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jan 2024 16:46:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-my-custom-Thank-you-page-after-payment-submitted-instead-of/m-p/88621#M55844</guid>
      <dc:creator>cgsshankar</dc:creator>
      <dc:date>2024-01-13T16:46:36Z</dc:date>
    </item>
  </channel>
</rss>

