VBA with asp and excel

S

sus

I wrote a VBA form to manipulate an existing Excel
spreadsheet. My manager liked it so much he wanted it put
on the web.

I used this block of code in an asp page:



code:
-----------------------------------------------------------
---------------------
<%@ LANGUAGE="VBSCRIPT" %>
<%
Response.ContentType = "application/vnd.ms-excel"
%>
-----------------------------------------------------------
---------------------




It was followed by an HTML table with the data and
formulas duplicated from my original spread sheet.

So far so good.

Now my question is, how do I take my existing VBA code and
use my lovely form on the web?
 
Top