0
I am not sure I understand what the question is. Which of the following are you asking:
- How to put (all) the addresses into one textbox
- How to save all the addresses that have been provided for a company
Normally there are database records / tables for the data shown in pages like that. So if it were me, I would put each address into it's place in the database records / tables. Then saving the data would work the same as saving works for other data. Then you just need to decide how to format the database data into the one textbox. So does that sound good?
0
Hi,
When the Pop up will be displayed ?
You need to enter 3 addresses so you have to check first address and enter the details and click OK.. then check second address the enter details and Click OK ... so on.. right ?.
If so,
txtaddress.text = txtaddress.text + "$" + txtaddress.text;
0
Hi,
I understood what u are saying. I am using just one panel control as you might have seen the attachment. All the entered text in the pop up should be displayed in txtaddress.text also. How to do that?
0
Is it Working?
0
Hi,
On Click of OK button of Popup, display the address in address text box with $ symbol for each address at the end and With Address Heading as Business,Bill, Ship,Other....
like,
Business Address
aaaaaaaaa
bbbbbbbbbbbbbbbb
ccccccccccccccccccccccc
$
Billing Address
aaaaaaaaaaaaa
bbbbbbbbbbbbbbbb
cccccccccccccccccccccccc
$
Shipping Address
aaaaaaaaaaaaaaaaa
bbbbbbbbbbbbb
cccccccccccccccccccccccccc
While clicking on Save,
Split the address text box value by $ as like,
foreach (string address in addressTextBox.Text.Split('$'))
{
if(address.Contains("Billing Address")
{
//Add to Billing address filed. DB should have the separate fields for each address type.
}
else if(.....)
}
0


Here i have attached the file as to how the asp.net page should look.. Plzz give me a hint on how it cane be done ..
Thanks
0
Yes the requirement is only 1 textbox is used to enter addresses based on selection. I don`t know how to save those multiple entries made by used and save all the address at single save button event
0
Hi,
You are having four type of addresses and user can select the four check boxes too.
So its better to add text boxes dynamically based on the selection and display the addresses.
Is it necessary to have a single text box. you can have dynamic text boxes based on selection right...