Welcome Guest Search | Active Topics | Sign In | Register

Get back value on dialog Options
89geronimo
Posted: Saturday, January 7, 2012 5:21:39 AM
Rank: Newbie
Groups: Member

Joined: 1/7/2012
Posts: 4
Hi sir,

I need to get back value the user enter on a dialog.

How can I do ?

Thank you
eo_support
Posted: Saturday, January 7, 2012 9:02:39 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

For a standard textbox, you would use something like this:

Code: C#
//Get the textbox
TextBox1 textbox = (TextBox)Dialog1.ContentContainer.FindControl("TextBox1");

//Get the textbox value
string s = textbox.Text;


Thanks


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.