 |
|
<%
set rs=server.createobject("adodb.recordset")
sql="select * from protype where grade=1"
rs.open sql,conn,1,1
if not rs.bof then
do while not rs.eof
names=rs("name")
id=rs("id")
%>
| 太阳能电池组件 |
| 太阳能电池片 |
| 太阳能照明系统 |
| 太阳能光伏发电 |
| 太阳能户用电源 |
<%
rs.movenext
loop
end if
rs.close
set rs = nothing
%>
|
|
|
|
<%
if request("id")<>"" then
id=trim(request("id"))
set rs=server.createobject("adodb.recordset")
sql="select * from news where id=" & id
rs.open sql,conn,1,1
if not rs.bof then
times=year(rs("time"))&"-"&month(rs("time"))&"-"&day(rs("time"))
%>
| 世博会将大面积应用太阳能 中国馆采集阳光 |
| 编辑:admin 发布时间:2008-9-20 |
2010年时的上海世博园区,将成为我国太阳能集中应用规模最大的城区。记者昨日从第五届长三角科技论坛上了
解到,园区太阳能发电能力将达5000千瓦,在中国馆、世博中心、主体馆和南市电厂建筑上均将布设光伏电池用以
采集阳光。
据介绍,规划用地面积达5.28平方公里的世博会园区将大面积应用太阳能,主要场馆设施以及部分国家的自建馆
,都将安装太阳能设施,进而与上海主电网并网发电,为城市大规模开发利用太阳能摸索经验。
在主题馆,6.4万平方米的屋顶将采用菱形和三角形的立体构图,太阳能电池全部铺入菱形内,建成后将成为国内
最大的光伏一体化单体建筑。 |
|
<%
end if
rs.close
conn.close
set conn = nothing
set rs = nothing
end if
%>
|
|