日归档:
2004年10月26日
| 记录数: 3
-
- ASP构造大数据量的分页SQL语句 z
- Weather:4/11度.好冷啊.
- 2004-10-26
- <%
'分页SQL语句生成代码
Function GetPageSQL(tblName,fldName,PageSize,PageIndex,OrderType,strWhere)
Dim strTemp,strSQL,strOrder
'根据排序方式生成相关代码
if OrderType=0 then
strTemp=">(select max([" & fldName & "])"
... - Views(4093) | Comments(0) | In web develop
-
- Byval与Byref的区别
- Weather:4/11度.好冷啊.
- 2004-10-26
实例:
sub Add1(ByVal no as int32)
no=no+100
end subsub Add2(ByRef no as int32)
no=no+100
end subprivate sub button1_click(sender as object,e as eventargs)handles button1.click
dim a as int32
a=100
Add1(a)
msgbox (...- Views(3612) | Comments(0) | In web develop
