that is how i have seen it done before
but i need to know
is there a way with vb script to be able to get the title (html) of the page when it loads and put it in the document?
Printable View
that is how i have seen it done before
but i need to know
is there a way with vb script to be able to get the title (html) of the page when it loads and put it in the document?
No because the VBScript is executed server-side before any of the HTML is rendered.
If you want to be able to access the title you'll need to declare it server-side and then you can reference it using VBScript and display it using HTML.
E.g.
<%
Dim strTitle
strTitle = "Welcome to My Page"
%>
<html>
<head>
<title><%= strTitle %></title>
</head>
etc.
DJ