albumindex.aspx
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:22k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. <%@ Page language="c#" AutoEventWireup="false" EnableViewState="false" Inherits="Discuz.Album.Pages.albumindex" %>
  2. <%@ Import namespace="System.Data" %>
  3. <%@ Import namespace="Discuz.Common" %>
  4. <%@ Import namespace="Discuz.Forum" %>
  5. <%@ Import namespace="Discuz.Entity" %>
  6. <script runat="server">
  7. override protected void OnInit(EventArgs e)
  8. {
  9. /* 
  10. This page was created by Discuz!NT Template Engine at 2009-9-22 17:24:48.
  11. 本页面代码由Discuz!NT模板引擎生成于 2009-9-22 17:24:48. 
  12. */
  13. base.OnInit(e);
  14. templateBuilder.Capacity = 220000;
  15. templateBuilder.Append("<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">rn");
  16. templateBuilder.Append("<html xmlns="http://www.w3.org/1999/xhtml">rn");
  17. templateBuilder.Append("<head>rn");
  18. templateBuilder.Append("<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />rn");
  19. templateBuilder.Append(meta.ToString());
  20. templateBuilder.Append("rn");
  21. templateBuilder.Append("<title>");
  22. templateBuilder.Append(pagetitle.ToString());
  23. templateBuilder.Append(" ");
  24. templateBuilder.Append(config.Seotitle.ToString().Trim());
  25. templateBuilder.Append(" - ");
  26. templateBuilder.Append(config.Albumname.ToString().Trim());
  27. templateBuilder.Append(" - Powered by Discuz!NT</title>rn");
  28. templateBuilder.Append("<link rel="icon" href="favicon.ico" type="image/x-icon" />rn");
  29. templateBuilder.Append("<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> rn");
  30. templateBuilder.Append("<!-- 调用样式表 -->rn");
  31. templateBuilder.Append("<link rel="stylesheet" href="templates/");
  32. templateBuilder.Append(templatepath.ToString());
  33. templateBuilder.Append("/main.css" type="text/css" media="all"  />rn");
  34. templateBuilder.Append(link.ToString());
  35. templateBuilder.Append("rn");
  36. templateBuilder.Append("<script type="text/javascript" src="javascript/template_report.js"></");
  37. templateBuilder.Append("script>rn");
  38. templateBuilder.Append("<script type="text/javascript" src="javascript/template_utils.js"></");
  39. templateBuilder.Append("script>rn");
  40. templateBuilder.Append("<script type="text/javascript" src="javascript/common.js"></");
  41. templateBuilder.Append("script>rn");
  42. templateBuilder.Append("<script type="text/javascript" src="javascript/menu.js"></");
  43. templateBuilder.Append("script>rn");
  44. templateBuilder.Append("<script type="text/javascript"> rn");
  45. templateBuilder.Append(" var aspxrewrite = ");
  46. templateBuilder.Append(config.Aspxrewrite.ToString().Trim());
  47. templateBuilder.Append(";rn");
  48. templateBuilder.Append("</");
  49. templateBuilder.Append("script>rn");
  50. templateBuilder.Append(script.ToString());
  51. templateBuilder.Append("rn");
  52. templateBuilder.Append("</head>rn");
  53. templateBuilder.Append("<body>rn");
  54. templateBuilder.Append("<div id="container">rn");
  55. templateBuilder.Append("<!--header start-->rn");
  56. templateBuilder.Append("<div id="header">rn");
  57. templateBuilder.Append(" <h2><a href="");
  58. templateBuilder.Append(config.Forumurl.ToString().Trim());
  59. templateBuilder.Append("" title="Discuz!NT|BBS|论坛 - Powered by Discuz!NT"><img src="templates/");
  60. templateBuilder.Append(templatepath.ToString());
  61. templateBuilder.Append("/images/logo.gif" alt="Discuz!NT|BBS|论坛"/></a>rn");
  62. templateBuilder.Append(" </h2>rn");
  63. if (headerad!="")
  64. {
  65. templateBuilder.Append(" <div id="ad_headerbanner">");
  66. templateBuilder.Append(headerad.ToString());
  67. templateBuilder.Append("</div>rn");
  68. } //end if
  69. templateBuilder.Append("</div>rn");
  70. templateBuilder.Append("<div id="menu">rn");
  71. templateBuilder.Append(" <span class="avataonline">rn");
  72. if (userid==-1)
  73. {
  74. templateBuilder.Append(" <form id="loginform" name="login" method="post" action="login.aspx?loginsubmit=true">rn");
  75. templateBuilder.Append(" <input type="hidden" name="referer" value="website.aspx" />rn");
  76. templateBuilder.Append(" <input onclick="if(this.value=='用户名')this.value = ''" value="用户名" tabindex="1" maxlength="40" size="15" name="postusername" id="username" type="text" />rn");
  77. templateBuilder.Append(" <input type="password" size="10" name="password" id="password" tabindex="2" />rn");
  78. templateBuilder.Append(" <button value="true" type="submit" name="userlogin"> 登录 </button>rn");
  79. templateBuilder.Append(" </form>rn");
  80. }
  81. else
  82. {
  83.  aspxrewriteurl = this.UserInfoAspxRewrite(userid);
  84. templateBuilder.Append("    <cite>欢迎:<a href="");
  85. templateBuilder.Append(aspxrewriteurl.ToString());
  86. templateBuilder.Append("">");
  87. templateBuilder.Append(username.ToString());
  88. templateBuilder.Append("</a></cite>rn");
  89. templateBuilder.Append("    <a href="");
  90. templateBuilder.Append(forumurl.ToString());
  91. templateBuilder.Append("logout.aspx?userkey=");
  92. templateBuilder.Append(userkey.ToString());
  93. templateBuilder.Append("&reurl=website.aspx">退出</a>rn");
  94. } //end if
  95. templateBuilder.Append(" </span>rn");
  96. templateBuilder.Append(" <ul>rn");
  97. templateBuilder.Append(" ");
  98. templateBuilder.Append(mainnavigation.ToString());
  99. templateBuilder.Append("rn");
  100. templateBuilder.Append(" </ul>rn");
  101. templateBuilder.Append("</div>rn");
  102. if (page_err==0)
  103. {
  104. if (config.Enablealbum==1)
  105. {
  106. templateBuilder.Append(" <div id="info">rn");
  107. templateBuilder.Append(" <a href="showphotolist.aspx?type=2">最新图片</a>rn");
  108. templateBuilder.Append(" <a href="showphotolist.aspx?type=1">最多评论</a>rn");
  109. templateBuilder.Append(" <a href="showphotolist.aspx?type=3" class="notabs">最多收藏</a>rn");
  110. templateBuilder.Append(" </div> rn");
  111. } //end if
  112. templateBuilder.Append("<div id="foruminfo">rn");
  113. if (announcementcount>0)
  114. {
  115. templateBuilder.Append(" <div id="userinfo">rn");
  116. templateBuilder.Append(" <marquee width="70%" direction="left" scrollamount="2" scrolldelay="1" onmouseover="this.stop();" onmouseout="this.start();">rn");
  117. int announcement__loop__id=0;
  118. foreach(DataRow announcement in announcementlist.Rows)
  119. {
  120. announcement__loop__id++;
  121. templateBuilder.Append(" <a href="");
  122. templateBuilder.Append(forumurl.ToString());
  123. templateBuilder.Append("announcement.aspx#" + announcement["id"].ToString().Trim() + "">" + announcement["title"].ToString().Trim() + "</a><cite>rn");
  124. templateBuilder.Append(Convert.ToDateTime(announcement["starttime"].ToString().Trim()).ToString("MM.dd"));
  125. templateBuilder.Append("</cite>rn");
  126. } //end loop
  127. templateBuilder.Append(" </marquee>rn");
  128. templateBuilder.Append(" </div> rn");
  129. } //end if
  130. templateBuilder.Append(" <div id="headsearch">rn");
  131. templateBuilder.Append(" <div id="search">rn");
  132. templateBuilder.Append(" </div> rn");
  133. templateBuilder.Append(" </div>rn");
  134. templateBuilder.Append("</div>rn");
  135. templateBuilder.Append("<div id="ntforumbody">rn");
  136. templateBuilder.Append("<div id="albumleft">rn");
  137. templateBuilder.Append(" <div class="albumbox commendalbum" style="margin-top:0;">rn");
  138. templateBuilder.Append(" <div class="forumtitle "> rn");
  139. templateBuilder.Append(" <h2>推荐图片</h2>rn");
  140. templateBuilder.Append(" <em><a href="showalbumlist.aspx">更多...</a></em>rn");
  141. templateBuilder.Append(" </div>rn");
  142. templateBuilder.Append(" <div class="Photo">rn");
  143. templateBuilder.Append(" <ul>rn");
  144. int photo__loop__id=0;
  145. foreach(PhotoInfo photo in recommendphotolist)
  146. {
  147. photo__loop__id++;
  148. templateBuilder.Append(" <li>rn");
  149. templateBuilder.Append(" <div Class="albumimg">rn");
  150. templateBuilder.Append(" <a href="showphoto.aspx?photoid=");
  151. templateBuilder.Append(photo.Photoid.ToString().Trim());
  152. templateBuilder.Append(""><img src="");
  153. templateBuilder.Append(photo.Filename.ToString().Trim());
  154. templateBuilder.Append("" onerror="this.onerror=null;this.src='templates/");
  155. templateBuilder.Append(templatepath.ToString());
  156. templateBuilder.Append("/images/album/errorphoto.gif';" alt="");
  157. templateBuilder.Append(photo.Title.ToString().Trim());
  158. templateBuilder.Append("" title="");
  159. templateBuilder.Append(photo.Title.ToString().Trim());
  160. templateBuilder.Append("" /></a>rn");
  161. templateBuilder.Append(" </div>rn");
  162. templateBuilder.Append(" <h3><a href="showphoto.aspx?photoid=");
  163. templateBuilder.Append(photo.Photoid.ToString().Trim());
  164. templateBuilder.Append("">rn");
  165. if (photo.Title=="")
  166. {
  167. templateBuilder.Append("暂无标题rn");
  168. }
  169. else
  170. {
  171. templateBuilder.Append(photo.Title.ToString().Trim());
  172. templateBuilder.Append("rn");
  173. } //end if
  174. templateBuilder.Append("</a>&nbsp;</h3>rn");
  175. templateBuilder.Append(" </li>rn");
  176. } //end loop
  177. templateBuilder.Append(" </ul>rn");
  178. templateBuilder.Append(" </div>rn");
  179. templateBuilder.Append(" <div style="text-align:center;"><img src="templates/");
  180. templateBuilder.Append(templatepath.ToString());
  181. templateBuilder.Append("/images/album/albumLine.gif" /></div>rn");
  182. templateBuilder.Append(" <div class="focustitle"> rn");
  183. templateBuilder.Append(" <h2 style="background:url(templates/");
  184. templateBuilder.Append(templatepath.ToString());
  185. templateBuilder.Append("/images/album/focusbg.gif) no-repeat left center;">焦点</h2>rn");
  186. templateBuilder.Append(" </div>rn");
  187. templateBuilder.Append(" <div class="Photo">rn");
  188. templateBuilder.Append(" <ul>rn");
  189. int focusphoto__loop__id=0;
  190. foreach(PhotoInfo focusphoto in focusphotolist)
  191. {
  192. focusphoto__loop__id++;
  193. templateBuilder.Append(" <li>rn");
  194. templateBuilder.Append(" <div Class="albumimg">rn");
  195. templateBuilder.Append(" <a href="showphoto.aspx?photoid=");
  196. templateBuilder.Append(focusphoto.Photoid.ToString().Trim());
  197. templateBuilder.Append(""><img src="");
  198. templateBuilder.Append(focusphoto.Filename.ToString().Trim());
  199. templateBuilder.Append("" alt="");
  200. templateBuilder.Append(focusphoto.Title.ToString().Trim());
  201. templateBuilder.Append("" title="");
  202. templateBuilder.Append(focusphoto.Title.ToString().Trim());
  203. templateBuilder.Append("" onerror="this.onerror=null;this.src='templates/");
  204. templateBuilder.Append(templatepath.ToString());
  205. templateBuilder.Append("/images/album/errorphoto.gif';" /></a> rn");
  206. templateBuilder.Append(" </div>rn");
  207. templateBuilder.Append(" <h3><a href="showphoto.aspx?photoid=");
  208. templateBuilder.Append(focusphoto.Photoid.ToString().Trim());
  209. templateBuilder.Append("">rn");
  210. if (focusphoto.Title=="")
  211. {
  212. templateBuilder.Append("暂无标题rn");
  213. }
  214. else
  215. {
  216. templateBuilder.Append(focusphoto.Title.ToString().Trim());
  217. templateBuilder.Append("rn");
  218. } //end if
  219. templateBuilder.Append("</a></h3>rn");
  220. templateBuilder.Append(" </li>rn");
  221. } //end loop
  222. templateBuilder.Append(" </ul>rn");
  223. templateBuilder.Append(" </div>rn");
  224. templateBuilder.Append("</div>rn");
  225. templateBuilder.Append("<div class="commendphoto">rn");
  226. templateBuilder.Append(" <div class="forumtitle "> rn");
  227. templateBuilder.Append(" <h2>推荐相册</h2>rn");
  228. templateBuilder.Append(" <em><a href="showalbumlist.aspx">更多...</a></em>rn");
  229. templateBuilder.Append(" </div>rn");
  230. templateBuilder.Append(" <div class="Photo" style="background:#FCFCF8;">rn");
  231. templateBuilder.Append(" <ul>rn");
  232. int album__loop__id=0;
  233. foreach(AlbumInfo album in recommendalbumlist)
  234. {
  235. album__loop__id++;
  236. templateBuilder.Append(" <li>rn");
  237. if (album.Logo!="")
  238. {
  239. templateBuilder.Append(" <div class="PhotoPicture">rn");
  240. templateBuilder.Append(" <a href="showalbum.aspx?albumid=");
  241. templateBuilder.Append(album.Albumid.ToString().Trim());
  242. templateBuilder.Append(""><img src="");
  243. templateBuilder.Append(album.Logo.ToString().Trim());
  244. templateBuilder.Append("" alt="");
  245. templateBuilder.Append(album.Title.ToString().Trim());
  246. templateBuilder.Append("" style="max-height: 80px; max-width: 105px" /></a>rn");
  247. templateBuilder.Append(" </div>rn");
  248. }
  249. else
  250. {
  251. templateBuilder.Append(" <div class="nopicture">rn");
  252. templateBuilder.Append(" <a href="showalbum.aspx?albumid=");
  253. templateBuilder.Append(album.Albumid.ToString().Trim());
  254. templateBuilder.Append(""><img src="templates/");
  255. templateBuilder.Append(templatepath.ToString());
  256. templateBuilder.Append("/images/album/nophoto.jpg" alt="");
  257. templateBuilder.Append(album.Title.ToString().Trim());
  258. templateBuilder.Append("" /></a>rn");
  259. templateBuilder.Append(" </div>rn");
  260. } //end if
  261. templateBuilder.Append(" <h3><a href="showalbumlist.aspx?uid=");
  262. templateBuilder.Append(album.Userid.ToString().Trim());
  263. templateBuilder.Append("">");
  264. templateBuilder.Append(album.Username.ToString().Trim());
  265. templateBuilder.Append("</a>的相册</h3>rn");
  266. templateBuilder.Append(" <p><a href="showalbum.aspx?albumid=");
  267. templateBuilder.Append(album.Albumid.ToString().Trim());
  268. templateBuilder.Append("">");
  269. templateBuilder.Append(album.Title.ToString().Trim());
  270. templateBuilder.Append("</a> (");
  271. templateBuilder.Append(album.Imgcount.ToString().Trim());
  272. templateBuilder.Append(")</p>rn");
  273. templateBuilder.Append(" </li> rn");
  274. } //end loop
  275. templateBuilder.Append(" </ul>rn");
  276. templateBuilder.Append(" </div>rn");
  277. templateBuilder.Append(" <div style="text-align:center;"><img src="templates/");
  278. templateBuilder.Append(templatepath.ToString());
  279. templateBuilder.Append("/images/album/albumLine2.gif" /></div>rn");
  280. templateBuilder.Append(" <div class="focustitle"> rn");
  281. templateBuilder.Append(" <h2  style="background:url(templates/");
  282. templateBuilder.Append(templatepath.ToString());
  283. templateBuilder.Append("/images/album/photobg.gif) no-repeat left center;">焦点</h2>rn");
  284. templateBuilder.Append(" <em><a href="showalbumlist.aspx">更多...</a></em>rn");
  285. templateBuilder.Append(" </div>rn");
  286. templateBuilder.Append(" <div class="Photo">rn");
  287. templateBuilder.Append(" <ul>rn");
  288. int focusalbum__loop__id=0;
  289. foreach(AlbumInfo focusalbum in focusalbumlist)
  290. {
  291. focusalbum__loop__id++;
  292. templateBuilder.Append(" <li>rn");
  293. if (focusalbum.Logo!="")
  294. {
  295. templateBuilder.Append(" <div class="PhotoPicture">rn");
  296. templateBuilder.Append(" <a href="showalbum.aspx?albumid=");
  297. templateBuilder.Append(focusalbum.Albumid.ToString().Trim());
  298. templateBuilder.Append(""><img src="");
  299. templateBuilder.Append(focusalbum.Logo.ToString().Trim());
  300. templateBuilder.Append("" alt="");
  301. templateBuilder.Append(focusalbum.Title.ToString().Trim());
  302. templateBuilder.Append("" style="max-height: 80px; max-width: 105px"/></a>rn");
  303. templateBuilder.Append(" </div>rn");
  304. }
  305. else
  306. {
  307. templateBuilder.Append(" <div class="nopicture">rn");
  308. templateBuilder.Append(" <a href="showalbum.aspx?albumid=");
  309. templateBuilder.Append(focusalbum.Albumid.ToString().Trim());
  310. templateBuilder.Append(""><img src="templates/");
  311. templateBuilder.Append(templatepath.ToString());
  312. templateBuilder.Append("/images/album/nophoto.jpg" alt="");
  313. templateBuilder.Append(focusalbum.Title.ToString().Trim());
  314. templateBuilder.Append("" /></a>rn");
  315. templateBuilder.Append(" </div>rn");
  316. } //end if
  317. templateBuilder.Append(" <h3><a href="showalbumlist.aspx?uid=");
  318. templateBuilder.Append(focusalbum.Userid.ToString().Trim());
  319. templateBuilder.Append("">");
  320. templateBuilder.Append(focusalbum.Username.ToString().Trim());
  321. templateBuilder.Append("</a>的相册</h3>rn");
  322. templateBuilder.Append(" <p><a href="showalbum.aspx?albumid=");
  323. templateBuilder.Append(focusalbum.Albumid.ToString().Trim());
  324. templateBuilder.Append("">");
  325. templateBuilder.Append(focusalbum.Title.ToString().Trim());
  326. templateBuilder.Append("</a> (");
  327. templateBuilder.Append(focusalbum.Imgcount.ToString().Trim());
  328. templateBuilder.Append(")</p>rn");
  329. templateBuilder.Append(" </li>rn");
  330. } //end loop
  331. templateBuilder.Append(" </ul>rn");
  332. templateBuilder.Append(" </div>rn");
  333. templateBuilder.Append("</div>rn");
  334. templateBuilder.Append("</div>rn");
  335. templateBuilder.Append("<div id="albumright">rn");
  336. templateBuilder.Append(" <div class="rankbox">rn");
  337. templateBuilder.Append(" <h2>一周热图总排行</h2>rn");
  338. templateBuilder.Append(" <ul>rn");
  339. int weekhotphoto__loop__id=0;
  340. foreach(PhotoInfo weekhotphoto in weekhotphotolist)
  341. {
  342. weekhotphoto__loop__id++;
  343. templateBuilder.Append(" <li><a href="showphoto.aspx?photoid=");
  344. templateBuilder.Append(weekhotphoto.Photoid.ToString().Trim());
  345. templateBuilder.Append("">");
  346. templateBuilder.Append(weekhotphoto.Title.ToString().Trim());
  347. templateBuilder.Append("</a> (<a href="showalbumlist.aspx?uid=");
  348. templateBuilder.Append(weekhotphoto.Userid.ToString().Trim());
  349. templateBuilder.Append("">");
  350. templateBuilder.Append(weekhotphoto.Username.ToString().Trim());
  351. templateBuilder.Append("</a>)</li>rn");
  352. } //end loop
  353. templateBuilder.Append(" </ul>rn");
  354. templateBuilder.Append(" </div>rn");
  355. if (rotatepicdata!=null && rotatepicdata!="")
  356. {
  357. templateBuilder.Append(" <div class="modulebox sidebox" style="padding:1px;">rn");
  358. templateBuilder.Append(" <script type='text/javascript'>rn");
  359. templateBuilder.Append(" var imgwidth = 227;rn");
  360. templateBuilder.Append(" var imgheight = 127;rn");
  361. templateBuilder.Append(" </");
  362. templateBuilder.Append("script> rn");
  363. templateBuilder.Append(" <!--图片轮换代码开始-->rn");
  364. templateBuilder.Append(" <script type='text/javascript' src='javascript/template_rotatepic.js'></");
  365. templateBuilder.Append("script>rn");
  366. templateBuilder.Append(" <script type='text/javascript'>rn");
  367. templateBuilder.Append(" var data = { };rn");
  368. templateBuilder.Append(" ");
  369. templateBuilder.Append(rotatepicdata.ToString());
  370. templateBuilder.Append("rn");
  371. templateBuilder.Append(" var ri = new MzRotateImage();rn");
  372. templateBuilder.Append(" ri.dataSource = data;rn");
  373. templateBuilder.Append(" ri.width = 226;rn");
  374. templateBuilder.Append(" ri.height = 127;rn");
  375. templateBuilder.Append(" ri.interval = 3000;rn");
  376. templateBuilder.Append(" ri.duration = 2000;rn");
  377. templateBuilder.Append(" document.write(ri.render());rn");
  378. templateBuilder.Append(" </");
  379. templateBuilder.Append("script>rn");
  380. templateBuilder.Append(" <!--图片轮换代码结束-->     rn");
  381. templateBuilder.Append(" </div>rn");
  382. } //end if
  383. templateBuilder.Append(" <div class="albumcategories">rn");
  384. templateBuilder.Append(" <h2>rn");
  385. templateBuilder.Append("            相册分类</h2>rn");
  386. templateBuilder.Append(" <ul>rn");
  387. int ac__loop__id=0;
  388. foreach(AlbumCategoryInfo ac in albumcategorylist)
  389. {
  390. ac__loop__id++;
  391. templateBuilder.Append(" <li><a href="showalbumlist.aspx?cate=");
  392. templateBuilder.Append(ac.Albumcateid.ToString().Trim());
  393. templateBuilder.Append("">");
  394. templateBuilder.Append(ac.Title.ToString().Trim());
  395. templateBuilder.Append("</a></li>rn");
  396. } //end loop
  397. templateBuilder.Append(" </ul>rn");
  398. templateBuilder.Append(" </div>rn");
  399. if (config.Enabletag==1)
  400. {
  401. templateBuilder.Append(" <script type="text/javascript" src="cache/tag/closedtags.txt"></");
  402. templateBuilder.Append("script>rn");
  403. templateBuilder.Append(" <script type="text/javascript" src="cache/tag/colorfultags.txt"></");
  404. templateBuilder.Append("script>rn");
  405. templateBuilder.Append(" <script type="text/javascript" src="javascript/ajax.js"></");
  406. templateBuilder.Append("script>rn");
  407. templateBuilder.Append(" <script type="text/javascript" src="javascript/template_tags.js"></");
  408. templateBuilder.Append("script>rn");
  409. templateBuilder.Append(" <div class="sidebox sideboxbg">rn");
  410. templateBuilder.Append(" <h4>热门标签</h4>rn");
  411. templateBuilder.Append(" <ul id="photohottags">rn");
  412. templateBuilder.Append(" <script type="text/javascript" src="cache/hottags_photo_cache_jsonp.txt" onerror="this.onerror=null;getajaxphotohottags();"></");
  413. templateBuilder.Append("script>rn");
  414. templateBuilder.Append(" </ul>rn");
  415. templateBuilder.Append(" </div>rn");
  416. } //end if
  417. if (config.Enablespace==1)
  418. {
  419. templateBuilder.Append(" <div class="updatespace">rn");
  420. templateBuilder.Append(" <h2>最近更新的空间</h2>rn");
  421. templateBuilder.Append(" <ul>rn");
  422. int spaceinfo__loop__id=0;
  423. foreach(DataRow spaceinfo in recentupdatespaceList.Rows)
  424. {
  425. spaceinfo__loop__id++;
  426. templateBuilder.Append(" <li><a href="");
  427. templateBuilder.Append(spaceurl.ToString());
  428. templateBuilder.Append("space/?uid=" + spaceinfo["userid"].ToString().Trim() + "">" + spaceinfo["spacetitle"].ToString().Trim() + "</a></li>rn");
  429. } //end loop
  430. templateBuilder.Append(" </ul>rn");
  431. templateBuilder.Append(" </div>rn");
  432. } //end if
  433. templateBuilder.Append("</div>rn");
  434. templateBuilder.Append("</div>rn");
  435. }
  436. else
  437. {
  438. templateBuilder.Append("<div class="box message">rn");
  439. templateBuilder.Append(" <h1>出现了");
  440. templateBuilder.Append(page_err.ToString());
  441. templateBuilder.Append("个错误</h1>rn");
  442. templateBuilder.Append(" <p>");
  443. templateBuilder.Append(msgbox_text.ToString());
  444. templateBuilder.Append("</p>rn");
  445. templateBuilder.Append(" <p class="errorback">rn");
  446. templateBuilder.Append(" <script type="text/javascript">rn");
  447. templateBuilder.Append(" if(");
  448. templateBuilder.Append(msgbox_showbacklink.ToString());
  449. templateBuilder.Append(")rn");
  450. templateBuilder.Append(" {rn");
  451. templateBuilder.Append(" document.write("<a href=\"");
  452. templateBuilder.Append(msgbox_backlink.ToString());
  453. templateBuilder.Append("\">返回上一步</a> &nbsp; &nbsp;|&nbsp; &nbsp  ");rn");
  454. templateBuilder.Append(" }rn");
  455. templateBuilder.Append(" </");
  456. templateBuilder.Append("script>rn");
  457. templateBuilder.Append(" <a href="forumindex.aspx">论坛首页</a>rn");
  458. if (usergroupid==7)
  459. {
  460. templateBuilder.Append("  &nbsp; &nbsp|&nbsp; &nbsp; <a href="register.aspx">注册</a>rn");
  461. } //end if
  462. templateBuilder.Append(" </p>rn");
  463. templateBuilder.Append("</div>rn");
  464. } //end if
  465. Response.Write(templateBuilder.ToString());
  466. }
  467. </script>