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