Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: help with a query output

    Welll i think its getting there...

     

    -------------------------------------

    <%@LANGUAGE="JAVASCRIPT"%>

    <!--#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...

  • RE: help with a query output

    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...

  • RE: help with a query output

    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=" &...

Viewing 3 posts - 1 through 3 (of 3 total)