Return the HTML code from ASPDBNET. Normaly, Invisible is set to true.

Namespace:  Tornado
Assembly:  Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)

Syntax

C#
public string Get_ASPDBNET()
Visual Basic (Declaration)
Public Function Get_ASPDBNET As String

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>

See Also