Return the HTML code from ASPDBNET. Normaly, Invisible is set to true.
Namespace:
TornadoAssembly: Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)
Syntax
Field Value
dbUnit = Unit of the active module.Return Value
Returns the ASPDBNET result HTML code.Dim ret as string = obj.Get_ASPDBNET(string dbUnit)
Dim ret as string = obj.Get_ASPDBNET()
Remarks
dbInvisible=True must be set in order for the resulting HTML code to be saved for Get_ASPDBNET.
Examples
Mix you own code with ASPDBNET output.
CopyVB.NET
<script language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Dim x As New Tornado.z x.dbQP = "U=1| D=localhost;SAMPLE;frank;pass| Q=ACT| GDF=0,1,2| S=2| iv=t" x.ASPDBNET() Response.Write("<Center><h1>Get Results</h1></center>") Response.Write(x.Get_ASPDBNET(1)) End Sub </script>