Viewing 4 posts - 1 through 4 (of 4 total)
Thank you all for your help! My pages are up and running
March 15, 2007 at 9:15 am
Here is the code from the ASP page
Set objNav = Server.CreateObject("ADODB.Command")
ObjNav.ActiveConnection = cn
objNav.CommandText = "sp_navigation"
objNav.CommandType = 4
SET objParam2 = objNav.CreateParameter("@myNumPost",131, 1, 4)
objNav.Parameters.Append objParam2
objNav.Parameters("@myNumPost") =...
March 14, 2007 at 2:26 pm
I can't set top count using a parameter.MS SQL does not allow it apparently. And the rowcount is set before I begin my select statement so I can't seem...
March 14, 2007 at 2:02 pm
Thanks so much! Silly oversite.
March 14, 2007 at 1:26 pm
Viewing 4 posts - 1 through 4 (of 4 total)