Calling VBScript function directly from ASP.NET

  • Thread starter Thread starter murali
  • Start date Start date
M

murali

Hi,

I wrote a vbscript function to get some values from excel at client
side. This function is getting called from a button click using 'sub
button1_onclick() ....'

What I want now is that I require to call the same code in someother
buttons' click, but after performing some tasks (which were written in
c#). How can I do that?
 
You can call any routine you want by adding a hook in OnClick (attribute add
to the control). The language is not an issue.

NOTE: I would still consider moving to JavaScript due to the portability.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside the box!
*************************************************
 
Back
Top