[求助]asp代码
看看这段代码什么意识..新手上路
<%
Dim xlcb2__MMColParam2
xlcb2__MMColParam = "4"
If (Request("MM_EmptyValue") <> "") Then
xlcb2__MMColParam = Request("MM_EmptyValue")
End If
%>
<%
Dim xlcb2
Dim xlcb2_numRows
Set xlcb2 = Server.CreateObject("ADODB.Recordset")
xlcb2.ActiveConnection = MM_ttconn_STRING
xlcb2.Source = "SELECT * FROM Product WHERE productid<=6 and productid >= " + Replace(xlcb2__MMColParam, "'", "''") + ""
xlcb2.CursorType = 0
xlcb2.CursorLocation = 2
xlcb2.LockType = 1
xlcb2.Open()
xlcb2_numRows = 0
%>