Hi ,
Plzz go through the attachment.. I have a modal pop up extender for a panel control which has textboxes.. When user enters data and clicks ok I want the all the textbox values in the txtaddress.text.. Plzz help
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
B M SuchitraPosted Jul 31, 2011, 11:43 PM
Sir will this work for ok button click of the modal pop up extender. Actually the requirement is like that and i am supposed to do it that way. But at the ok button click i lose the values.. I want those all textbox values in one text box ie the txtaddress.text.
Suthish NairPosted Jul 29, 2011, 3:54 PM
Try this way.. convert to c#
Dim address as string = txtstreet1.Text & "" & txtstreet2.Text & "" & drpcity.SelectedItem.Text & "" & drpcountry.SelectedItem.Text & "" & drpstate.SelectedItem.Text & "" & Convert.ToInt32(txtzipcode.Text)
Dim s As String = String.Format("document.getElementById('{0}').value='{1}';", txtaddress.ClientID, address)