I'm using V3 of Chronoforms and I'm trying to redirect form input to another site. Everything from getting the form data, storing the data into the database, and redirecting to the other site works fine. The problem I am having is populating the form on the new site after redirection. The input textbox has a name attribute with a separator in it.
Instead of looking like this:
<input type="text" id="username" name="username" value="" />
It looks like this:
<input type="text" id="CreateNewAccountInfo_UserName" name="CreateNewAccountInfo.UserName" value="" />
Now my Chronoform is like the first one and I'm redirecting to the second example. Also the second site is using ASP (not sure if that makes a difference). I've searched the web and found various solutions but none deal with name attributes with separators in them.
Instead of looking like this:
<input type="text" id="username" name="username" value="" />
It looks like this:
<input type="text" id="CreateNewAccountInfo_UserName" name="CreateNewAccountInfo.UserName" value="" />
Now my Chronoform is like the first one and I'm redirecting to the second example. Also the second site is using ASP (not sure if that makes a difference). I've searched the web and found various solutions but none deal with name attributes with separators in them.