Search results for query: *

  1. L

    Access VB.Net DLL from VBScript / ASP

    Basically I have a set of Vbscript / ASP Common routines that are used server side in a number of different web sites. I wish to convert this set of routines to a vb.net DLL so that it is available as I rewrite the web sites in .net. In the interim I also need to access these routines in my...
  2. L

    Access VB.Net DLL from VBScript / ASP

    I assumed that direct access to the Class Library DLL would be more efficient that going thought a web service layer. Is that not something I need to worry about?
  3. 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:
  4. L

    Adding Rows with an element where maxoccurs > 0

    Thanks, thats sorted it!
  5. L

    Adding Rows with an element where maxoccurs > 0

    The dataset was created by reading in the XSD as in: dsout.readxmlschema("schemaname") I'm trying to create some XML that looks like this: <Body> <Surname>Smith</Surname> <Forename>Alan</Forename> <Forename>Ian</Forename> <PostTown>Ian</PostTown> </Body>
  6. L

    Adding Rows with an element where maxoccurs > 0

    What is the format of the code? I have tried for example WorkRow("Forename")(0) = m_forename WorkRow("Forename")(1) = m_forename1 but I cant find any combination trhat works
  7. 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