INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

HANDLE


PASSWORD
Remember Me
Forgot Password?

Come Join Us!

  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • Turn Off Ad Banners
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

E-mail*
Handle

Password
Verify P'word
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Member Feedback

"...I have tons of books, have book marked tons of tutorials, which have helped, but this forum has answered those "impossible to find" solutions. I am thrilled with this site..."

Geography

Where in the world do Tek-Tips members come from?

Microsoft: Active Server Pages (ASP) FAQ

ASP 101

Using ASP on pages with .htm extension
Posted: 26 Oct 01

By using the Javascript "src=" tag Javascript can be created dynamically and asp executed on an html page.

Example
On the HTML page

<script Language="Javascript" src="test.asp"></script>

<script Language="Javascript">
alert('First Name = '+fname);
alert('Second Name = '+sname);
</script>

The test.asp page

<%
' Get something from a database using asp
Set oConn = Server.CreateObject("ADODB.Connection")
....

' Now add the results to the HTML page
Response.Write "var fname=" & oRsf.Fields("FName") & ";"
Response.Write "var sname=" & oRsf.Fields("SName") & ";"
%>

Steve

Back to Microsoft: Active Server Pages (ASP) FAQ Index
Back to Microsoft: Active Server Pages (ASP) Forum
My FAQ Archive
Email This FAQ To A Friend

My Archive