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

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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) ?
 
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) ?
 
Back
Top