Collect the same Data-Blocks from all the URLs and create a table.
Version: Gold
Namespace:
TornadoVersion: Gold
Assembly: Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)
Syntax
| C# |
|---|
public string ASPdbRemoteDataCollection( string DataBlock ) |
| Visual Basic (Declaration) |
|---|
Public Function ASPdbRemoteDataCollection ( _ DataBlock As String _ ) As String |
Parameters
- DataBlock
- Type: System..::.String
Collect the same Data-Blocks from all the URLs and create a table. If Block does not exist then the entire file will be read. A data block is one tagged by <Data-Block-Name>...</Data-Block-Name>.
Examples
<script language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Dim Rm As New Tornado.Z() Rm.dbRemoteURL = "http://www.usintertech.com/DB/sales1.data |" & _ "http://www.usintertech.com/DB/sales2.data" Rm.ASPdbRemoteDataCollection("Sales") End Sub </script>