COM Component ExampleI developed this component to build my skills in COM, ASP and ADO. It was developed with Visual Basic 5.0 and compiled as an Active X dll. The component has functions that lookup, add, change and delete records from a Microsoft Access database. The component and it's functions are called from several ASP files I created, a few shown below. The component is fully functioning, I tested it locally on an NT 4.0 workstation running Peer Web Services. |
Artist: | " & rs(0) & " |
Title: | " & rs(1) & " |
******** ASP File that gets the requested information ****************** <% Dim tab ' Creating instance of our Component Set tab = Server.CreateObject("Music.Tabulature") 'Get tab by artist Response.Write tab.GetResultsHTML() %> >