当前位置:编程学习 > asp >>

asp 怎样读取数据库ip表显示为地址

<%
rs.pageSize=40

numberall=rs.pageCount
page=Int(request("page"))
If page<=0 Then page=1
If request("page")="" Then
page=1
end if
rs.absolutePage=page
%>

    <%
For i=1 To rs.pageSize
  if rs.eof then
      exit for
   end if
%>

        <td>第
          <%response.write(rs("id"))%>
          楼</td>
            <%response.write(rs("Uname"))%></td>
<%response.write(rs("ip"))%></td>

           
    <%
rs.MoveNext
Next
end if
%>

 

以上代码显示如下<td>第 1 楼</td>用户</td>显示ip</td>

<td>第 2 楼</td>用户</td>显示ip</td>

<td>第 3 楼</td>用户</td>显示ip</td>

<td>第 4 楼</td>用户</td>显示ip</td>

<td>第 5 楼</td>用户</td>显示ip</td>

<td>第 6 楼</td>用户</td>显示ip</td>

<td>第 7 楼</td>用户</td>显示ip</td>

<td>第 8 楼</td>用户</td>显示ip</td>

<td>第 9 楼</td>用户</td>显示ip</td>

<td>第 10 楼</td>用户</td>显示ip</td>

.........

总的显示40句,

但我现在要让显示结果改一下,变成每显示8句就加一个代码<TD class=mytd vAlign=top>,其中数据库中的ip我要改为显示地址


<td>第 1 楼</td>用户</td>显示ip地址</td>

<td>第 2 楼</td>用户</td>显示ip地址</td>

........

<td>第 7 楼</td>用户</td>显示ip地址</td>

<TD class=mytd vAlign=top><td>第 8 楼</td>用户</td>显示ip地址</td>

<td>第 9 楼</td>用户</td>显示ip地址</td>

.........

<td>第 15楼</td>用户</td>显示ip地址</td>

<TD class=mytd vAlign=top><td>第 16 楼</td>用户</td>显示ip地址</td>

<td>第 16 楼</td>用户</td>显示ip地址</td>

.........

<td>第 23楼</td>用户</td>显示ip地址</td>

<TD class=mytd vAlign=top><td>第 24 楼</td>用户</td>显示ip地址</td>

<td>第 25 楼</td>用户</td>显示ip地址</td>

.......

<td>第 31楼</td>用户</td>显示ip地址</td>

<TD class=mytd vAlign=top><td>第 32 楼</td>用户</td>显示ip地址</td>

<td>第 33 楼</td>用户</td>显示ip地址</td>

.......

总的显示40句

 

请问这个要怎么写才行

追问:数据库里保存的是ip如:192.168.1.1

而我要显示的是ip地址如:局域网

答案:  <%
For i=1 To rs.pageSize
  if rs.eof then
      exit for
   end if
%>

        <td>第
          <%response.write(rs("id"))%>
          楼</td>
            <%response.write(rs("Uname"))%></td>
<%response.write(rs("ip"))%></td>

 <%

If i Mod 8 Then Response.Write("<TD class=mytd vAlign=top>")
rs.MoveNext
Next
end if
%>

 

能否解释下你所谓的ip和ip地址的区别不?

上一个:ASP程序防止SQL注入的最好办法/?
下一个:asp+Win2003系统sesssion频繁丢失。怎么解决?

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,