Viewing 3 posts - 1 through 3 (of 3 total)
Welll i think its getting there...
-------------------------------------
<!--#include file="s4r.asp" -->
<%
var go = Server.CreateObject("ADODB.Recordset");
go.ActiveConnection = MM_s4r_STRING;
go.Source = "SELECT newdate, news FROM dbo.news";
go.CursorType = 0;
go.CursorLocation = 2;
go.LockType = 1;
go.Open();
var go_numRows = 0;
%>
<% Response.Write...
February 15, 2005 at 10:12 am
Thanks for the reply... This is still giving a 500
<%
var to = Server.CreateObject("ADODB.Recordset");
to.ActiveConnection = MM_s4r_STRING;
to.Source = "SELECT newdate, news FROM dbo.news";
to.CursorType = 0;
to.CursorLocation = 2;
to.LockType = 1;
to.Open();
var to_numRows = 0;
%>
<%
Response.Write...
February 14, 2005 at 12:55 pm
Thanks for the feedback. I tried this...
-------------------------------------------
<%
var to = Server.CreateObject("ADODB.Recordset");
to.ActiveConnection = MM_s4r_STRING;
to.Source = "SELECT newdate, news FROM dbo.news";
to.CursorType = 0;
to.CursorLocation = 2;
to.LockType = 1;
to.Open();
var to_numRows = 0;
%>
<%= Response.Write "&news=" &...
February 14, 2005 at 11:09 am
Viewing 3 posts - 1 through 3 (of 3 total)