How to call server side (VB/C#) function from client side (Javascript)?

G

Guest

Hi

I have a control in page, how can I call the control's function from javascript (except submit or xmlhttp)
Thanks in advanc
ddt
 
P

Patrice Scribe

IE has a specific mechanism that allows to do so. You could also use tricks
such as an hidden IFRAME that allows to call server side code wihtout
refreshing the current page but it's probably better to use a standard
mechanism if possible (postbacks to simulate server side events).

What do you want to do ?


--

ddt said:
Hi,

I have a control in page, how can I call the control's function from
javascript (except submit or xmlhttp) ?
 
J

Jose Marcenaro

For server processing, either a postback (submit) or xmlhttp is required.

Regards
Jose.

ddt said:
Hi,

I have a control in page, how can I call the control's function from
javascript (except submit or xmlhttp) ?
 

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

Top