Search results

  1. D

    Grouping data year wise and month wise in asp classic using access as database

    I have changed the sql and it has been executed without any error but still it is showing the same result. how should I write the <% if not(rsd.EOF or rsd.BOF) then While not rsd.Eof %> <%=rsyear%> <BR> <% rsd.MoveNEXT Wend %>...
  2. D

    Grouping data year wise and month wise in asp classic using access as database

    Sorry for that crap. this is the correct code. <% if not(rsd.EOF or rsd.BOF) then While not rsd.Eof %> <%=rsyear%> <BR> <% rsd.MoveNEXT Wend %> <% else %> Information coming...
  3. D

    Grouping data year wise and month wise in asp classic using access as database

    Thanks for response. Here is the code. <% if not(rsd.EOF or rsd.BOF) then While not rsd.Eof %> <%=rsyear%><br> <%=rsmonth%> <LI><%=rscirc%>.</B><BR>Updated at:<%=rsupt%></A></FONT><BR><BR> <% rsd.MoveNext Wend %>...
  4. D

    Grouping data year wise and month wise in asp classic using access as database

    Good wishes, I have a problem i am using access database *.mdb to provide dynamic content to my website using asp classic as server side scripting. I have a table named "circ" Structure is ID autonumber, particulars text field, updatetime Date/time field I have some...
Top Bottom