-
1. Re: 20 long webforms; how to successfully step a user through them?
thetrickster888 Mar 7, 2013 2:46 PM (in response to 5iveMEDIA)It's pretty easy in BC. All you have to do is edit the ACTION attribute on the form that you want to lead to the next page and add/edit the "PageID" url variable in the action attribute.
So, I'm assuming your form is the "New Customers" form, or form[name="catwebformform16797"]. You'll see the value of the action attribute on this FORM element is: "/FormProcessv2.aspx?WebFormID=40425&OID=14484754&OTYPE=1&EID=0&CID=0&OPTIN=true"
In that URL you'll notice some URL vars like "OTYPE" and "WebFormID", among others. If you don't see the "PageID" url variable already there (it's not on yours) then you add the "PageID" variable in yourself. It's case sensitive.
To add a url variable onto a URL like we have above, just precede the variable with an ampersand (&) and then to set that URL variable, just add an "=YOURVALUE" where YOURVALUE in our case will the the url to the next form page.
So, update your ACTION attribute to:
"/FormProcessv2.aspx?WebFormID=40425&OID=14484754&OTYPE=1&EID=0&CID=0&OPTIN=true&PageID=/y our-next-form-url.html"
Now, when users submit the form, they'll be taken to another page with another form and the information will be saved and kept with the same case file that gets submitted to the CRM.
Read more about multi-step forms and pay attention to the section on Rules to Consider: http://kb.worldsecuresystems.com/kb/splitting-web-form-across-multiple.html#main_Rules_to_ consider


