Re: Splitting address field using the Split function which contains commas
Thanks for the reply. actually my problem is that I am not very good in javascript. So here is my from end javascript:However, please note instead of "Address" the field is "Text1".function...
View ArticleRe: Splitting address field using the Split function which contains commas
Moodhi Please Note: I am unable to add my own field separator character because the javascript in the front end appends the Input fields to "Addresses" (array field)You can change the delimiter to...
View ArticleSplitting address field using the Split function which contains commas
On the front-end I have multiple Input boxes gathered in a array. On the server side I use Split function as follows:Dim Address() As String = Request.Form("Addresses").Split(",")The above works OK if...
View ArticleRe: Splitting address field using the Split function which contains commas
Hi,Could you create simple code application to help us better understand this issue? Is it possible to use json object as the Addresses, like following:{"field 1":"01 My Street My Town My City My...
View ArticleRe: Splitting address field using the Split function which contains commas
Hi Moodhi,The join() method joins the elements of an array into a string, and returns the string. The elements will be separated by a specified separator. The default separator is comma (,).For...
View ArticleRe: Splitting address field using the Split function which contains commas
Thank you for the reply.Actually I resolved my issue as follows:Replace the following: Dim Address() As String = Request.Form("Addresses").Split(",")By: Dim Addresses As String() =...
View Article