nCut the code back out of the Visual Studio application
and place into the specific
application, general application, and framework .vb files
nCreate a one line ASP.NET page to start the
application:
n<%@ Page Language="vb"
aspcompat=true Inherits="VI.Demo" %>
n (aspcompat allows use of recordsets in addition to
datasets)
nCreate .bat files to build the application DLLs:
nvbapp demo /r:./bin/ads.dll
nvbapp ads
nvbdll vfw
n where vbapp.bat contains
nvbc %1.vb /t:library
/utf8output /r:system.dll /r:system.web.dll /r:./bin/vfw.dll /out:bin\%1.dll
n and vbdll.bat contains
nvbc %1.vb /t:library
/utf8output /r:system.dll /r:system.web.dll /out:bin\%1.dll /debug:full
nDeploy .aspx page into web directory and .dll files into
a bin subdirectory of that
directory