%@LANGUAGE="VBSCRIPT"%> <%option explicit%> <% Dim rsGetAboutUs,strAboutUs,strSQL set rsGetAboutUs=Server.CreateObject("ADODB.recordset") strSQL="Select au_profile from tblAboutUs where au_id=1" rsGetAboutUs.open strSQL,objConn,3,3 If not rsGetAboutUs.eof then strAboutUs=rsGetAboutUs("au_profile") Else strAboutUs="Coming Soon...." End If rsGetAboutUs.close %>
|