8
Answers

Can someone give me a hint on this?

B M Suchitra

B M Suchitra

13y
1.6k
1
Hi everyone,

Hope all are fine here.

I have a requirement in my web application where i have 4 checkboxes [business address,shipto address,billto address,others]. And only 1 textbox for address[multiline].based on used selection a pop up window should be displayed which again should have textboxes for entering street1,street2,city,state,oincode,country. After user enters the data and clicks ok the data should appear in the address textbox[multilined]. How do i save the data if user enters more than 1 address in that page and later save in database?
Answers (8)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
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
Jaganathan Bantheswaran

Jaganathan Bantheswaran

NA 21.9k 2.2m 13y
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
B M Suchitra

B M Suchitra

NA 507 339.8k 13y
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
Jaganathan Bantheswaran

Jaganathan Bantheswaran

NA 21.9k 2.2m 13y
Is it Working?
0
Jaganathan Bantheswaran

Jaganathan Bantheswaran

NA 21.9k 2.2m 13y
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
B M Suchitra

B M Suchitra

NA 507 339.8k 13y

Attachment untitled.rar

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
B M Suchitra

B M Suchitra

NA 507 339.8k 13y
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
Jaganathan Bantheswaran

Jaganathan Bantheswaran

NA 21.9k 2.2m 13y
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...