Search results for query: *

  • Users: lankylad
  • Content: Threads
  • Order by date
  1. L

    Access VB.Net DLL from VBScript / ASP

    I have created a VB.Net Class Library and the DLL has been successfully stored in the BIN folder. I can access the classes using VB.net. My question is, how can I access this same Class Library from my legacy VBScript / ASP world? :confused:
  2. L

    Adding Rows with an element where maxoccurs > 0

    The following code works fine Dim WorkRow As DataRow = dsOut.Tables("SearchRequest").NewRow() WorkRow["Surname"] = m_forename WorkRow("PostTown") = m_posttown dsOut.Tables("SearchRequest").Rows.Add(WorkRow) but I now wish to add WorkRow["Forename"] = m_forename where Forename is defined...
Back
Top