I have two multi-line textboxes
productIdTextbox and productNametextbox
The problem is that when im trying to print the text it returns the following
Dim thestring as new string = productIdTextbox.text & vbTab & productNametextbox.text
I want to obviously have it in this format:
Now i know why this happens, i just cant figure out a way around it.
productIdTextbox and productNametextbox
The problem is that when im trying to print the text it returns the following
Dim thestring as new string = productIdTextbox.text & vbTab & productNametextbox.text
PHP Code:
1
2
3
apple
orange
pear
PHP Code:
1 apple
2 orange
3 pear