client-sided control

  • Thread starter Thread starter agb
  • Start date Start date
A

agb

Hi
I need an example to understand the client-sided control

For example ;

I need a (I think a javascript code) in a ascx file

Then in a web form I want to write the Listbox1.selecteditem.text to the
textbox1.text

I do not have enough informtaion about this subject.

I heard about a Render method but not know anything

is there a good informtaion about this subject? or could you please send me
an example?


Please help.
THANKS...
 
Hi,

if you want to set Listbox1.selecteditem.text to textbox1.text you dont
need any javascript simply assain the values in form_load or in Listbox1
selectedindexChannge event.

textbox1.text = Listbox1.selecteditem.text;

Natty Gur, CTO
Dao2Com Ltd.
34th Elkalay st. Raanana
Israel , 43000
Phone Numbers:
Office: +972-(0)9-7740261
Fax: +972-(0)9-7740261
Mobile: +972-(0)58-888377
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top