Is there anything wrong with this code

Reply

Join Date: Jul 2005
Posts: 27
Reputation: wchitamb is an unknown quantity at this point 
Solved Threads: 0
wchitamb wchitamb is offline Offline
Light Poster

Is there anything wrong with this code

 
0
  #1
Aug 12th, 2005
<html>
<head>
<title></title>
</head>
<body>
<%


Function NewConn()
Set NewConn= Server.CreateObject("ADODB.Connection")
NewConn.ConnectionTimeout=100
NewConn.Open "Provider=sqloledb;Data Source=[192.168.160.1];uid=[sa ];pwd=[topland]"
NewConn.CommandTimeout=1200
End Function

%>
</body>
</html>

I am trying this functions.inc code then use the include ext and i keep on getting this error message

Error Type:
Active Server Pages, ASP 0126 (0x80004005)
The include file 'functions.inc' was not found.
/Assets.asp, line 1

and when i try to save it as functions.inc.asp i get this

Error Type:
Microsoft VBScript compilation (0x800A0401)
Expected end of statement
/Staff.asp, line 14, column 37

i am relly stuck and have been going around for days nows can anyone please help.
Reply With Quote Quick reply to this message  
Join Date: Jun 2005
Posts: 107
Reputation: madmital is an unknown quantity at this point 
Solved Threads: 3
madmital madmital is offline Offline
Junior Poster

Re: Is there anything wrong with this code

 
0
  #2
Aug 12th, 2005
To include reusable code from a file you do smth like

functions.inc:
  1. Function NewConn()
  2. Set NewConn= Server.CreateObject("ADODB.Connection")
  3. NewConn.ConnectionTimeout=100
  4. NewConn.Open "Provider=sqloledb;Data Source=[192.168.160.1];uid=[sa ];pwd=[topland]"
  5. NewConn.CommandTimeout=1200
  6. End Function

And then in the file where you want to insert the 'functions.inc' (the file should have the '.asp' extension)
eg. index.asp:
  1. <HTML>
  2. <BODY>
  3. blahblah
  4.  
  5. <!--#include file="functions.inc"-->
  6.  
  7. <%
  8. more blah blah
  9. %>
  10. </BODY>
  11. </HTML>
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC