Return the HTML code from ASPdb.Net.
Namespace:
TornadoAssembly: Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)
Syntax
| C# |
|---|
public string Get_ASPDBNET( string Unit ) |
| Visual Basic (Declaration) |
|---|
Public Function Get_ASPDBNET ( _ Unit As String _ ) As String |
Parameters
- Unit
- Type: System..::.String
Target unit - dbUnit
Return Value
Dim ret as string = GD.Get_ASPDBNET(string dbUnit)
Remarks
dbInvisible=True must be set in order for the resulting HTML code to be saved for Get_ASPDBNET.
Examples
Create a Table Control (table1) and with 3 panes - top, left and right. Map Get_ASPDBNET into a table cell.
CopyVB.NET
<script language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Dim z As New Tornado.z Dim GD As New Tornado.GetData z.dbQP = "U=1| D=NWIND| Q=Orders| GDF=0,1,2,3| S=2| iv=t" z.ASPdbNET() Table1.Rows(1).Cells(1).Text = GD.Get_ASPDBNET(1) End Sub </script>