I noticed a glitch in my query string passed for creating new contacts. When the billing address has ‘#’ in it, the user gets the “Inked” error message.
For example, the street address “2799 WEST GRAND BLVD” works fine; however, 430 BEDFORD ST #100 MA does not. And I narrowed the problem down to ‘#’ being the issue.
I’ve attached my Query string below but does any have suggestions for how I should move forward? I could always put limitations on entry for symbols but i’d like to not limit users whenever possible.
<br>AccountId={{$Model.Account.data.0.Id}}&MailingStreet={{$Model.Account.data.0.BillingStreet}}&MailingCity={{$Model.Account.data.0.BillingCity}}&MailingState={{$Model.Account.data.0.BillingState}}&MailingPostalCode={{$Model.Account.data.0.BillingPostalCode}}&Phone={{$Model.Account.data.0.Phone}}&MailingCountry={{$Model.Account.data.0.BillingCountry}}
