Connecting database to web site

I

ig.martix

This is all the code of the page. Am I missing somethere?

I also found in the Page Options uder the Authoring tab there's a
check box for JavaScript/Jscript that's checked but it's also grayed
out. Does this matter?


<html>
<!-- Include file for JScript ADO Constants -->
<!--#include File="adojavas.inc"-->


<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<title>Header</title>


<base target=frm_dsp>


</head>


<body>


<script language=jscript>


function test()
{


var conn = Server.CreateObject("ADODB.Connection");
var rs = Server.CreateObject("ADODB.recordset");



}


</script>

<p align="center">Input Phone Number <input type="text" name="Tin"
size="20" onblur="test();"> Market Name
<input type="text" name="Tname" size="20"> Market Number
<input type="text" name="Tcc" size="20"></p>
<p align="center">


<a href="market_info.htm">Market Info </a>&nbsp;&nbsp;&nbsp;
<a href="rentals.htm">Rentals</a>&nbsp;&nbsp;&nbsp; <a
href="delivery.htm">
Delivery</a>&nbsp;&nbsp;&nbsp; <a href="service.htm">Service</
a>&nbsp;&nbsp;&nbsp;
<a href="address_book.htm">Address Book</a>&nbsp;&nbsp;&nbsp;
<a href="sales.htm">Sales</a>&nbsp;&nbsp;&nbsp; <a
href="change_of_owner.htm">
Change of Owner</a>&nbsp;&nbsp;&nbsp; <a
href="price_descriptions.htm">Price
Descriptions</a>&nbsp;&nbsp;&nbsp; <a href="after_hours.htm">After
Hours</a></p>


</body>


</html>
 
M

Mike Mueller

Try to keep it in the origianl thread.

: This is all the code of the page. Am I missing somethere?
:
: I also found in the Page Options uder the Authoring tab
there's a
: check box for JavaScript/Jscript that's checked but it's
also grayed
: out. Does this matter?
:
:
: <html>
: <!-- Include file for JScript ADO Constants -->
: <!--#include File="adojavas.inc"-->
:
:
: <head>
: <meta http-equiv="Content-Language" content="en-us">
: <meta http-equiv="Content-Type" content="text/html;
: charset=windows-1252">
: <title>Header</title>
:
:
: <base target=frm_dsp>
:
:
: </head>
:
:
: <body>
:
:
: <script language=jscript>
:
:
: function test()
: {
:
:
: var conn = Server.CreateObject("ADODB.Connection");
: var rs = Server.CreateObject("ADODB.recordset");
:
:
:
: }
:
:
: </script>
:
: <p align="center">Input Phone Number <input type="text"
name="Tin"
: size="20" onblur="test();"> Market Name
: <input type="text" name="Tname" size="20"> Market Number
: <input type="text" name="Tcc" size="20"></p>
: <p align="center">
:
:
: <a href="market_info.htm">Market Info
</a>&nbsp;&nbsp;&nbsp;
: <a href="rentals.htm">Rentals</a>&nbsp;&nbsp;&nbsp; <a
: href="delivery.htm">
: Delivery</a>&nbsp;&nbsp;&nbsp; <a
href="service.htm">Service</
: a>&nbsp;&nbsp;&nbsp;
: <a href="address_book.htm">Address
Book</a>&nbsp;&nbsp;&nbsp;
: <a href="sales.htm">Sales</a>&nbsp;&nbsp;&nbsp; <a
: href="change_of_owner.htm">
: Change of Owner</a>&nbsp;&nbsp;&nbsp; <a
: href="price_descriptions.htm">Price
: Descriptions</a>&nbsp;&nbsp;&nbsp; <a
href="after_hours.htm">After
: Hours</a></p>
:
:
: </body>
:
:
: </html>
:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top