Dreamweaver中这段代码的意思
请教以下代码的的意思,这是什么语言?VB?还是其他的?请写出每一句的意思和作用,谢谢!FunctionProducts(SortPath,trs,tds)dimrs,sq...
请教以下代码的的意思,这是什么语言?VB?还是其他的?
请写出每一句的意思和作用,谢谢!
Function Products(SortPath,trs,tds)
dim rs,sql,tr,td,ProductName,SmallPicPath
set rs = server.createobject("adodb.recordset")
sql="select top "&trs*tds&" * from shujuku_Products where ViewFlag order by id desc"
'sql="select top "&trs*tds&" * from Qianbo_Products where ViewFlag and CommendFlag and Instr(SortPath,'"&SortPath&"')>0 order by id desc"
'sql="select top "&trs*tds&" * from Qianbo_Products where ViewFlag and NewFlag order by id desc"
rs.open sql,conn,1,1
if rs.eof then
response.write "暂无相关信息"
else
Response.Write "<table cellpadding=""0"" cellspacing=""0"">"&VbCrLf
for tr=1 to trs
Response.Write " <tr>"&VbCrLf
for td=1 to tds
if StrLen(rs("ProductName"))<=22 then
ProductName=rs("ProductName")
else
ProductName=StrLeft(rs("ProductName"),20)
end If
If ISHTML = 1 Then
AutoLink = ""&ProName&""&Separated&""&rs("ID")&"."&HTMLName&""
Else
AutoLink = "ProductView.asp?ID="&rs("id")&""
End If
SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
Response.Write " <td><table cellpadding=""2"" cellspacing=""0"" >"&VbCrLf
Response.Write " <tr>"&VbCrLf
Response.Write " <td style=""border: 1px solid #ccc; width:120px; height:150px; text-align:center;""><a href="""&AutoLink&"""><img src="""&SmallPicPath&""" alt="""&rs("ProductName")&""" width=""120"" height=""150"" border=""0"" /></a></td>"&VbCrLf
Response.Write " </tr>"&VbCrLf
Response.Write " <tr>"&VbCrLf
Response.Write " <td style=""height:30px; text-align:center;""><a href="""&AutoLink&""" title="""&rs("ProductName")&""">"&ProductName&"</a> </td>"&VbCrLf
Response.Write " </tr>"&VbCrLf
Response.Write " </table></td>"&VbCrLf
Response.Write " <td width=""8""></td>"&VbCrLf
rs.movenext
if rs.eof then exit for
next
Response.Write " </tr>"&VbCrLf
if rs.eof then exit for
next
Response.Write "</table>"&VbCrLf
end if
rs.close
set rs=nothing
End Function
感谢这位大哥的热心回答,但是让人有种站着说话不腰疼的感觉,如果很精通的是没必要去考究每一句的意思,但是你有没有想过对于一个初学者来说呢?继续期待完整的答案 展开
请写出每一句的意思和作用,谢谢!
Function Products(SortPath,trs,tds)
dim rs,sql,tr,td,ProductName,SmallPicPath
set rs = server.createobject("adodb.recordset")
sql="select top "&trs*tds&" * from shujuku_Products where ViewFlag order by id desc"
'sql="select top "&trs*tds&" * from Qianbo_Products where ViewFlag and CommendFlag and Instr(SortPath,'"&SortPath&"')>0 order by id desc"
'sql="select top "&trs*tds&" * from Qianbo_Products where ViewFlag and NewFlag order by id desc"
rs.open sql,conn,1,1
if rs.eof then
response.write "暂无相关信息"
else
Response.Write "<table cellpadding=""0"" cellspacing=""0"">"&VbCrLf
for tr=1 to trs
Response.Write " <tr>"&VbCrLf
for td=1 to tds
if StrLen(rs("ProductName"))<=22 then
ProductName=rs("ProductName")
else
ProductName=StrLeft(rs("ProductName"),20)
end If
If ISHTML = 1 Then
AutoLink = ""&ProName&""&Separated&""&rs("ID")&"."&HTMLName&""
Else
AutoLink = "ProductView.asp?ID="&rs("id")&""
End If
SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
Response.Write " <td><table cellpadding=""2"" cellspacing=""0"" >"&VbCrLf
Response.Write " <tr>"&VbCrLf
Response.Write " <td style=""border: 1px solid #ccc; width:120px; height:150px; text-align:center;""><a href="""&AutoLink&"""><img src="""&SmallPicPath&""" alt="""&rs("ProductName")&""" width=""120"" height=""150"" border=""0"" /></a></td>"&VbCrLf
Response.Write " </tr>"&VbCrLf
Response.Write " <tr>"&VbCrLf
Response.Write " <td style=""height:30px; text-align:center;""><a href="""&AutoLink&""" title="""&rs("ProductName")&""">"&ProductName&"</a> </td>"&VbCrLf
Response.Write " </tr>"&VbCrLf
Response.Write " </table></td>"&VbCrLf
Response.Write " <td width=""8""></td>"&VbCrLf
rs.movenext
if rs.eof then exit for
next
Response.Write " </tr>"&VbCrLf
if rs.eof then exit for
next
Response.Write "</table>"&VbCrLf
end if
rs.close
set rs=nothing
End Function
感谢这位大哥的热心回答,但是让人有种站着说话不腰疼的感觉,如果很精通的是没必要去考究每一句的意思,但是你有没有想过对于一个初学者来说呢?继续期待完整的答案 展开
4个回答
展开全部
rs.open sql,conn,1,1
代码以上的意思打开一个(SortPath路径,trs行数,tds列数)的数据库的意思。
if rs.eof then
response.write "暂无相关信息"
上面代码的意思是如果指针指向最后一条就输出"暂无相关信息"。
Response.Write "<table cellpadding=""0"" cellspacing=""0"">"&VbCrLf
的意思是画一张表加一个回车。
for td=1 to tds
从1行循环到tds行。
if StrLen(rs("ProductName"))<=22 then
ProductName=rs("ProductName")
如果数据库中字段名为ProductName的长度小于等于22,那么变量ProductName=数据库中字段名为ProductName的值。
else
ProductName=StrLeft(rs("ProductName"),20)
否则变量ProductName=数据库中字段名为ProductName的值左边20字。
If ISHTML = 1 Then
AutoLink = ""&ProName&""&Separated&""&rs("ID")&"."&HTMLName&""
Else
AutoLink = "ProductView.asp?ID="&rs("id")&""
End If
同样也是给变量AutoLink 赋值的意思。
rs("GroupID"),指的是数据库中一个叫做GroupID字段的值。
rs("SmallPic"),rs("Exclusive")同理。
后面就是写一些画表和输入内容的html语言。
rs.movenext
指的是记录集的指针下移一条
if rs.eof then exit for指的是记录集到了最后一条就退出for循环
next for循环对应,就是下一td 的意思
Response.Write "</table>"&VbCrLf
这句话不要解释吧
end if好像是多的,上面then后换行了就不多
rs.close关闭记录集
set rs=nothing释放
代码以上的意思打开一个(SortPath路径,trs行数,tds列数)的数据库的意思。
if rs.eof then
response.write "暂无相关信息"
上面代码的意思是如果指针指向最后一条就输出"暂无相关信息"。
Response.Write "<table cellpadding=""0"" cellspacing=""0"">"&VbCrLf
的意思是画一张表加一个回车。
for td=1 to tds
从1行循环到tds行。
if StrLen(rs("ProductName"))<=22 then
ProductName=rs("ProductName")
如果数据库中字段名为ProductName的长度小于等于22,那么变量ProductName=数据库中字段名为ProductName的值。
else
ProductName=StrLeft(rs("ProductName"),20)
否则变量ProductName=数据库中字段名为ProductName的值左边20字。
If ISHTML = 1 Then
AutoLink = ""&ProName&""&Separated&""&rs("ID")&"."&HTMLName&""
Else
AutoLink = "ProductView.asp?ID="&rs("id")&""
End If
同样也是给变量AutoLink 赋值的意思。
rs("GroupID"),指的是数据库中一个叫做GroupID字段的值。
rs("SmallPic"),rs("Exclusive")同理。
后面就是写一些画表和输入内容的html语言。
rs.movenext
指的是记录集的指针下移一条
if rs.eof then exit for指的是记录集到了最后一条就退出for循环
next for循环对应,就是下一td 的意思
Response.Write "</table>"&VbCrLf
这句话不要解释吧
end if好像是多的,上面then后换行了就不多
rs.close关闭记录集
set rs=nothing释放
展开全部
body
{
background-image:
url(022.jpg);
}//这个页面的背景图片是一个名称为“022”的jpg格式的图片组成,
.aa
{
//这是定义的一个名为“aa”的CSS样式
font-size:
24px;
//文字大小为:24像素
font-weight:
bold;//字体浓淡属性为:粗体,normal为正常
font-family:
"宋体";
//字体类型:宋体
color:
red;
//
颜色:红色
.bb
{font-size:
16px;
font-weight:
bold;
color:
blue;
}
//基本同上
{
background-image:
url(022.jpg);
}//这个页面的背景图片是一个名称为“022”的jpg格式的图片组成,
.aa
{
//这是定义的一个名为“aa”的CSS样式
font-size:
24px;
//文字大小为:24像素
font-weight:
bold;//字体浓淡属性为:粗体,normal为正常
font-family:
"宋体";
//字体类型:宋体
color:
red;
//
颜色:红色
.bb
{font-size:
16px;
font-weight:
bold;
color:
blue;
}
//基本同上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这段代码里是从数据库中读取数据,并输出的代码。
如果想知道每一句的意思,楼主应该学习下数据库调用知识和JS代码知识。
如果想知道每一句的意思,楼主应该学习下数据库调用知识和JS代码知识。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是 ASP的一段函数 具体要知道每句的意思我觉得实在没必要
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询