Currently, I am working with the DNN CMS platform and utilizing a module called ActionForm provided by DNNSharp to generate forms.
Although there is an option in this module to display a form in a popup, I am facing a challenge in passing a query string to the popup URL using this method.
The HTML code snippet related to this issue looks like this:
<a href="javascript: showFormPopup1163();">Link Title</a>
Whenever I try to add ?mystring=[mytoken] at the end of the href attribute, it causes the link to stop functioning.
After some research, I have come across information suggesting that adding the query string to the popup URL can be achieved using JavaScript.
I came across this topic on Stack Overflow but I am uncertain whether it provides a solution applicable to my situation and how to actually implement it:
Add Query-String parameter to static link on click
Would inserting that particular code into script tags within my HTML code resolve my query string dilemma?
Any assistance or insights on this matter would be greatly appreciated.
Many Thanks, Alex