G
Guest
I've been working on this forever, and can't quite get it working right. I
posted here a long time ago, and thought I had it working but.... well...
no....
I'm trying to use a database field as my title. This is what I have so far...
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "connection works fine"
%>
<% strTitle = Request("tutorialID")%>
bla bla bla
<TITLE>Tutorial Detail: <%=strTitle%></TITLE>
This works as it should. But of course, using a number as a page title is
not very descriptive and will not make SE happy either for that matter.
So, when I try to replace "tutorialID" with "name" I get nothing (name being
another field in the db). Well I get "Tutorial Detail:".
What am I doing wrong? Am I missing something? This is really getting the
better of me so if anyone of you people that are 20 times as smart as I am
could shead some light, it would be super appreciated!!!!!!!!
posted here a long time ago, and thought I had it working but.... well...
no....
I'm trying to use a database field as my title. This is what I have so far...
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "connection works fine"
%>
<% strTitle = Request("tutorialID")%>
bla bla bla
<TITLE>Tutorial Detail: <%=strTitle%></TITLE>
This works as it should. But of course, using a number as a page title is
not very descriptive and will not make SE happy either for that matter.
So, when I try to replace "tutorialID" with "name" I get nothing (name being
another field in the db). Well I get "Tutorial Detail:".
What am I doing wrong? Am I missing something? This is really getting the
better of me so if anyone of you people that are 20 times as smart as I am
could shead some light, it would be super appreciated!!!!!!!!