In my ektron application I have created an html form which is mapped to dXh. Can I customise the post back message in my html form with the message which is returned from my dXh connector? Am I able to do it or not?
Can I customise the post back message in ektron html form with the message returned from my dXh connector
278 views Asked by Sudha At
1
There are 1 answers
Related Questions in CONNECTOR
- SAP Cloud Connector
- Cannot use MYSQL NET open inside multi threading application , Application pool hangs / Unable to Connect to Any of the Specified MySQL Hosts
- How to implement Connector Services (svconnector) in TYPO3 12?
- Python / Discord: "Unclosed Connector connections"
- Custom Connector UI default view
- Debezium connector error for source cassandra
- Set up Acumatica Connector
- Docusign providing an unspecified error with a status code of 400
- Snowflake SSO with OKTA using python
- Setting Up CI/CD Pipelines for Power Platform Application Using Service Principal and SSL Certificate
- Spark Connector with Cube js
- API Management connector unusable in Logic Apps after management API upgrade
- MySQL Connector error: Unable to connect to localhost
- WSO2 micro integrator email connector list always return empty list
- Generate PDF from Power Apps form including attachments
Related Questions in EKTRON
- Ektron CMS asp.net : How to get list of child taxonomies under parent taxonomy recursively
- TaxonomyManager.GetTree() Losing records
- How to hide elements when a smartform field is null
- How to synchronize taxonomies in ektron
- In Ektron, Load Last Active Location
- Implementing JSon-LD Schema in Ektron, is it possible?
- Is there a way to bulk-migrate wireframe templates in Ektron?
- Ektron: synchronization between two servers stopped
- Ektron 8.5 adding temporary paragraphs. Why?
- Ektron CMS400 - change content type?
- Filter ListView by TextBox with C#
- Insert My .NET Control In Template
- Stacking divs with position:absolute
- Share this javascript blocked in private mode firefox
- How do I show a list of SmartForms in Ektron
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I doubt you'll be able to. Data sent to the DXH from form submissions is done asynchronously so as to not cause delays on your site, particularly in case something is going wrong (e.g., someone shut down the DXH server). Because it's asynchronous, the form isn't waiting for a response from the DXH in any way. So even if there were a way to use that data, you likely would end up with a lot of false negatives if the DXH is receiving data slightly slower than the form postback is rendering.
What you can do is customize the postback message with information submitted through the form because that data is posted back to the server. So if you have a name field in your form, you could customize the postback message with "Thanks Sudha!"
To do that, you would just use Request.Form("fieldname") to retrieve the value as you would with any other HTML form.