Scottish Guest house and Bed & Breakfast Accommodation Scotland
<%
Dim rst1
Set rst1 = Server.CreateObject("ADODB.Recordset")
rst1.ActiveConnection = MM_Data_String
rst1.Source = "SELECT * FROM welcomeGhabba where id=1"
set Session("rst1")=rst1
rst1.Open()
Do Until rst1.EOF
%>
<%=rst1("txText")%>
<%
rst1.MoveNext
Loop
rst1.Close
set rst1=nothing
' If Not bScriptRan Then Response.Redirect("error.asp")
%>
|