Emulates Classic ASP-db and allows only (1) memo field to be dislayed below the grid.
Mydb.dbMemoFlds="Field| Title| Raw"
| Keyword | Description |
|---|---|
| Field | Memo Field Name - Only One allowed |
| Title | Title of Memo Table |
| Raw | True|False(Def). Data is Raw - as is read from DB - w/o any HTML code. |
Another way to display memo fields is is create a popup window link. See dbPopText
This example displays the Memo Field (Notes) of the Employees table. Normally, with an external memo display the row index is used to navigate to the desired record.
<script language="VB" runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
Dim f As New Tornado.z
With f
.dbQP = "U=5| D=Nwind| M=g!ind=0| Q=Employees| gdf=0,1,2"
.dbMemoFlds = "Fi=Notes| ti=Employees Notes"
.dbMemoTextSize = -1
.ASPdbNET()
End With
End Sub
</script>
z Class | Tornado Namespace | dbPopText | dbMemoTextSize