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

SCSI/ASPI

开发平台:

Others

  1. <%@ Page language="c#" AutoEventWireup="false" EnableViewState="false" Inherits="Discuz.Album.Pages.showphotolist" %>
  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/1/15 15:59:33.
  11. 本页面代码由Discuz!NT模板引擎生成于 2009/1/15 15:59:33. 
  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. templateBuilder.Append(" <div id="userinfo">rn");
  114. templateBuilder.Append(" <a href="");
  115. templateBuilder.Append(config.Albumurl.ToString().Trim());
  116. templateBuilder.Append("" id="NavHome" onmouseover="showMenu(this.id);" onmouseout="showMenu(this.id);">");
  117. templateBuilder.Append(config.Albumname.ToString().Trim());
  118. templateBuilder.Append("首页</a> > rn");
  119. if (type==0)
  120. {
  121. templateBuilder.Append(" 最多浏览rn");
  122. }
  123. else if (type==1)
  124. {
  125. templateBuilder.Append(" 最多评论rn");
  126. }
  127. else if (type==2)
  128. {
  129. templateBuilder.Append(" 最新图片rn");
  130. }
  131. else
  132. {
  133. templateBuilder.Append(" 最多收藏rn");
  134. } //end if
  135. templateBuilder.Append(" </div> rn");
  136. templateBuilder.Append("   <div id="headsearch">rn");
  137. templateBuilder.Append(" <div id="search">rn");
  138. templateBuilder.Append(" <form method="post" action="");
  139. templateBuilder.Append(forumurl.ToString());
  140. templateBuilder.Append("search.aspx" target="_blank" onsubmit="bind_keyword(this);">rn");
  141. templateBuilder.Append(" <input type="hidden" name="poster" />rn");
  142. templateBuilder.Append(" <input type="hidden" name="keyword" />rn");
  143. templateBuilder.Append(" <input type="hidden" name="type" value="" />rn");
  144. templateBuilder.Append(" <input id="keywordtype" type="hidden" name="keywordtype" value="0"/>rn");
  145. templateBuilder.Append(" <div id="searchbar">rn");
  146. templateBuilder.Append(" <dl>rn");
  147. templateBuilder.Append(" <dt id="quicksearch" class="s2" onclick="showMenu(this.id, false);" onmouseover="MouseCursor(this);">帖子标题</dt>rn");
  148. templateBuilder.Append(" <dd class="textinput"><input type="text" name="keywordf" value="" class="text"/></dd>rn");
  149. templateBuilder.Append(" <dd><input name="searchsubmit" type="submit" value="" class="s3"/></dd>rn");
  150. templateBuilder.Append(" </dl>rn");
  151. templateBuilder.Append(" </div>rn");
  152. templateBuilder.Append(" </form>rn");
  153. templateBuilder.Append(" <script type="text/javascript">function bind_keyword(form){if(form.keywordtype.value=='8'){form.keyword.value='';form.poster.value=form.keywordf.value; } else { form.poster.value=''; form.keyword.value=form.keywordf.value;if(form.keywordtype.value == '2')form.type.value = 'spacepost';if(form.keywordtype.value == '3')form.type.value = 'album';}}</");
  154. templateBuilder.Append("script>rn");
  155. templateBuilder.Append(" </div>rn");
  156. templateBuilder.Append(" </div>rn");
  157. templateBuilder.Append(" </div> rn");
  158. templateBuilder.Append(" ");
  159. templateBuilder.Append(navhomemenu.ToString());
  160. templateBuilder.Append("rn");
  161. templateBuilder.Append(" <div id="ntforumbody">rn");
  162. templateBuilder.Append(" <div id="albumleft">rn");
  163. templateBuilder.Append(" <div class="albumbox commendalbum" style="margin:0;">rn");
  164. templateBuilder.Append("    <div class="forumtitle "> rn");
  165. templateBuilder.Append(" <h2>rn");
  166. if (type==0)
  167. {
  168. templateBuilder.Append(" 最多浏览rn");
  169. }
  170. else if (type==1)
  171. {
  172. templateBuilder.Append(" 最多评论rn");
  173. }
  174. else if (type==2)
  175. {
  176. templateBuilder.Append(" 最新图片rn");
  177. }
  178. else
  179. {
  180. templateBuilder.Append(" 最多收藏rn");
  181. } //end if
  182. templateBuilder.Append(" </h2>rn");
  183. templateBuilder.Append("   </div>rn");
  184. templateBuilder.Append(" <div class="Photo arrangeboxbg">rn");
  185. if (type<3)
  186. {
  187. int rowindex = 1;
  188. int photo__loop__id=0;
  189. foreach(PhotoInfo photo in photolist)
  190. {
  191. photo__loop__id++;
  192. templateBuilder.Append(" <div rn");
  193. if (rowindex%2==0)
  194. {
  195. templateBuilder.Append("class="arrangebox2"rn");
  196. }
  197. else
  198. {
  199. templateBuilder.Append("class="arrangebox"rn");
  200. } //end if
  201. templateBuilder.Append(">rn");
  202. templateBuilder.Append(" <div class="arrangeboxLeft">");
  203. templateBuilder.Append(rowindex.ToString());
  204. templateBuilder.Append("</div>rn");
  205. templateBuilder.Append(" <div class="arrangeboxright">rn");
  206. templateBuilder.Append(" <dl>rn");
  207. templateBuilder.Append(" <dt>rn");
  208. templateBuilder.Append(" <div Class="albumimg" style="height:102px; min-height:102px;">rn");
  209. templateBuilder.Append(" <a href="");
  210. templateBuilder.Append(albumurl.ToString());
  211. templateBuilder.Append("showphoto.aspx?photoid=");
  212. templateBuilder.Append(photo.Photoid.ToString().Trim());
  213. templateBuilder.Append(""><img src="");
  214. templateBuilder.Append(photo.Filename.ToString().Trim());
  215. templateBuilder.Append("" alt="");
  216. templateBuilder.Append(photo.Title.ToString().Trim());
  217. templateBuilder.Append("" onerror="this.onerror=null;this.src='templates/");
  218. templateBuilder.Append(templatepath.ToString());
  219. templateBuilder.Append("/images/album/errorphoto.gif'"/></a> rn");
  220. templateBuilder.Append(" </div>rn");
  221. templateBuilder.Append(" </dt>rn");
  222. templateBuilder.Append(" <dd>rn");
  223. templateBuilder.Append(" <h3><em><a href="");
  224. templateBuilder.Append(albumurl.ToString());
  225. templateBuilder.Append("showphoto.aspx?photoid=");
  226. templateBuilder.Append(photo.Photoid.ToString().Trim());
  227. templateBuilder.Append("">");
  228. templateBuilder.Append(photo.Title.ToString().Trim());
  229. templateBuilder.Append("</a></em><a href="");
  230. templateBuilder.Append(albumurl.ToString());
  231. templateBuilder.Append("showphoto.aspx?photoid=");
  232. templateBuilder.Append(photo.Photoid.ToString().Trim());
  233. templateBuilder.Append("#comments"> 评论(");
  234. templateBuilder.Append(photo.Comments.ToString().Trim());
  235. templateBuilder.Append(")</a></h3>rn");
  236. templateBuilder.Append(" <p>");
  237. templateBuilder.Append(photo.Description.ToString().Trim());
  238. templateBuilder.Append("</p>rn");
  239. templateBuilder.Append(" <p class="One">rn");
  240. templateBuilder.Append(" <script language="javascript" type="text/javascript">rn");
  241. templateBuilder.Append(" ShowFormatBytesStr(");
  242. templateBuilder.Append(photo.Filesize.ToString().Trim());
  243. templateBuilder.Append(");rn");
  244. templateBuilder.Append(" </");
  245. templateBuilder.Append("script>rn");
  246. templateBuilder.Append(" </p>rn");
  247. templateBuilder.Append(" <p class="Two"><a href="");
  248. templateBuilder.Append(albumurl.ToString());
  249. templateBuilder.Append("showalbumlist.aspx?uid=");
  250. templateBuilder.Append(photo.Userid.ToString().Trim());
  251. templateBuilder.Append("">");
  252. templateBuilder.Append(photo.Username.ToString().Trim());
  253. templateBuilder.Append("</a>      ");
  254. templateBuilder.Append(photo.Postdate.ToString().Trim());
  255. templateBuilder.Append("rn");
  256. templateBuilder.Append(" </p>rn");
  257. templateBuilder.Append(" </dd>rn");
  258. templateBuilder.Append(" </dl>rn");
  259. templateBuilder.Append(" </div>rn");
  260. templateBuilder.Append(" </div>rn");
  261.  rowindex = rowindex+1;
  262. } //end loop
  263. }
  264. else
  265. {
  266. int rowindex = 1;
  267. int album__loop__id=0;
  268. foreach(AlbumInfo album in albumlist)
  269. {
  270. album__loop__id++;
  271. templateBuilder.Append(" <div rn");
  272. if (rowindex%2==0)
  273. {
  274. templateBuilder.Append("class="arrangebox2"rn");
  275. }
  276. else
  277. {
  278. templateBuilder.Append("class="arrangebox"rn");
  279. } //end if
  280. templateBuilder.Append(">rn");
  281. templateBuilder.Append(" <div class="arrangeboxLeft">");
  282. templateBuilder.Append(rowindex.ToString());
  283. templateBuilder.Append("</div>rn");
  284. templateBuilder.Append(" <div class="arrangeboxright">rn");
  285. templateBuilder.Append(" <dl>rn");
  286. templateBuilder.Append(" <dt>rn");
  287. if (album.Logo!="")
  288. {
  289. templateBuilder.Append(" <div class="arrangepicture">rn");
  290. templateBuilder.Append(" <a href="");
  291. templateBuilder.Append(albumurl.ToString());
  292. templateBuilder.Append("showalbum.aspx?albumid=");
  293. templateBuilder.Append(album.Albumid.ToString().Trim());
  294. templateBuilder.Append(""><img src="");
  295. templateBuilder.Append(album.Logo.ToString().Trim());
  296. templateBuilder.Append("" alt="");
  297. templateBuilder.Append(album.Title.ToString().Trim());
  298. templateBuilder.Append("" style="max-height: 80px; max-width: 105px" /></a>rn");
  299. templateBuilder.Append(" </div>rn");
  300. }
  301. else
  302. {
  303. templateBuilder.Append(" <a href="");
  304. templateBuilder.Append(albumurl.ToString());
  305. templateBuilder.Append("showalbum.aspx?albumid=");
  306. templateBuilder.Append(album.Albumid.ToString().Trim());
  307. templateBuilder.Append(""><img src="templates/");
  308. templateBuilder.Append(templatepath.ToString());
  309. templateBuilder.Append("/images/nophoto.jpg" alt="");
  310. templateBuilder.Append(album.Title.ToString().Trim());
  311. templateBuilder.Append("" /></a>rn");
  312. } //end if
  313. templateBuilder.Append(" </dt>rn");
  314. templateBuilder.Append(" <dd>rn");
  315. templateBuilder.Append(" <h3 style="padding-left:20px;"><em><a href="");
  316. templateBuilder.Append(albumurl.ToString());
  317. templateBuilder.Append("showalbum.aspx?albumid=");
  318. templateBuilder.Append(album.Albumid.ToString().Trim());
  319. templateBuilder.Append("">");
  320. templateBuilder.Append(album.Title.ToString().Trim());
  321. templateBuilder.Append("</a></em> (");
  322. templateBuilder.Append(album.Imgcount.ToString().Trim());
  323. templateBuilder.Append(")</h3>rn");
  324. templateBuilder.Append(" <p  style="padding-left:20px;">");
  325. templateBuilder.Append(album.Description.ToString().Trim());
  326. templateBuilder.Append("</p>rn");
  327. templateBuilder.Append(" <p class="Two"  style="padding-left:20px;"><a href="");
  328. templateBuilder.Append(albumurl.ToString());
  329. templateBuilder.Append("showalbumlist.aspx?uid=");
  330. templateBuilder.Append(album.Userid.ToString().Trim());
  331. templateBuilder.Append("">");
  332. templateBuilder.Append(album.Username.ToString().Trim());
  333. templateBuilder.Append("</a>      ");
  334. templateBuilder.Append(album.Createdatetime.ToString().Trim());
  335. templateBuilder.Append("</p>rn");
  336. templateBuilder.Append(" </dd>rn");
  337. templateBuilder.Append(" </dl>rn");
  338. templateBuilder.Append(" </div>rn");
  339. templateBuilder.Append(" </div>rn");
  340.  rowindex = rowindex+1;
  341. } //end loop
  342. } //end if
  343. templateBuilder.Append(" </div>rn");
  344. templateBuilder.Append(" </div>rn");
  345. templateBuilder.Append(" </div>rn");
  346. templateBuilder.Append(" <div id="albumright">rn");
  347. templateBuilder.Append(" <div class="rankbox">rn");
  348. templateBuilder.Append(" <h2>一周热图总排行</h2>rn");
  349. templateBuilder.Append(" <ul>rn");
  350. int weekhotphoto__loop__id=0;
  351. foreach(PhotoInfo weekhotphoto in weekhotphotolist)
  352. {
  353. weekhotphoto__loop__id++;
  354. templateBuilder.Append(" <li><a href="");
  355. templateBuilder.Append(albumurl.ToString());
  356. templateBuilder.Append("showphoto.aspx?photoid=");
  357. templateBuilder.Append(weekhotphoto.Photoid.ToString().Trim());
  358. templateBuilder.Append("">");
  359. templateBuilder.Append(weekhotphoto.Title.ToString().Trim());
  360. templateBuilder.Append("</a> (<a href="");
  361. templateBuilder.Append(albumurl.ToString());
  362. templateBuilder.Append("showalbumlist.aspx?uid=");
  363. templateBuilder.Append(weekhotphoto.Userid.ToString().Trim());
  364. templateBuilder.Append("">");
  365. templateBuilder.Append(weekhotphoto.Username.ToString().Trim());
  366. templateBuilder.Append("</a>)</li>rn");
  367. } //end loop
  368. templateBuilder.Append(" </ul>rn");
  369. templateBuilder.Append(" </div>rn");
  370. templateBuilder.Append(" <div class="albumcategories">rn");
  371. templateBuilder.Append(" <h2>rn");
  372. templateBuilder.Append("                    相册分类</h2>rn");
  373. templateBuilder.Append(" <ul>rn");
  374. int ac__loop__id=0;
  375. foreach(AlbumCategoryInfo ac in albumcategorylist)
  376. {
  377. ac__loop__id++;
  378. templateBuilder.Append(" <li><a href="");
  379. templateBuilder.Append(albumurl.ToString());
  380. templateBuilder.Append("showalbumlist.aspx?cate=");
  381. templateBuilder.Append(ac.Albumcateid.ToString().Trim());
  382. templateBuilder.Append("">");
  383. templateBuilder.Append(ac.Title.ToString().Trim());
  384. templateBuilder.Append("</a></li>rn");
  385. } //end loop
  386. templateBuilder.Append(" </ul>rn");
  387. templateBuilder.Append(" </div>rn");
  388. if (config.Enablespace==1)
  389. {
  390. templateBuilder.Append(" <div class="updatespace">rn");
  391. templateBuilder.Append(" <h2>最近更新的空间</h2>rn");
  392. templateBuilder.Append(" <ul>rn");
  393. int spaceinfo__loop__id=0;
  394. foreach(DataRow spaceinfo in recentupdatespaceList.Rows)
  395. {
  396. spaceinfo__loop__id++;
  397. templateBuilder.Append(" <li><a href="");
  398. templateBuilder.Append(spaceurl.ToString());
  399. templateBuilder.Append("space/?uid=" + spaceinfo["userid"].ToString().Trim() + "">" + spaceinfo["spacetitle"].ToString().Trim() + "</a></li>rn");
  400. } //end loop
  401. templateBuilder.Append(" </ul>rn");
  402. templateBuilder.Append(" </div>rn");
  403. } //end if
  404. templateBuilder.Append(" </div>rn");
  405. templateBuilder.Append(" </div>rn");
  406. }
  407. else
  408. {
  409. templateBuilder.Append("<div class="box message">rn");
  410. templateBuilder.Append(" <h1>出现了");
  411. templateBuilder.Append(page_err.ToString());
  412. templateBuilder.Append("个错误</h1>rn");
  413. templateBuilder.Append(" <p>");
  414. templateBuilder.Append(msgbox_text.ToString());
  415. templateBuilder.Append("</p>rn");
  416. templateBuilder.Append(" <p class="errorback">rn");
  417. templateBuilder.Append(" <script type="text/javascript">rn");
  418. templateBuilder.Append(" if(");
  419. templateBuilder.Append(msgbox_showbacklink.ToString());
  420. templateBuilder.Append(")rn");
  421. templateBuilder.Append(" {rn");
  422. templateBuilder.Append(" document.write("<a href=\"");
  423. templateBuilder.Append(msgbox_backlink.ToString());
  424. templateBuilder.Append("\">返回上一步</a> &nbsp; &nbsp;|&nbsp; &nbsp  ");rn");
  425. templateBuilder.Append(" }rn");
  426. templateBuilder.Append(" </");
  427. templateBuilder.Append("script>rn");
  428. templateBuilder.Append(" <a href="forumindex.aspx">论坛首页</a>rn");
  429. if (usergroupid==7)
  430. {
  431. templateBuilder.Append("  &nbsp; &nbsp|&nbsp; &nbsp; <a href="register.aspx">注册</a>rn");
  432. } //end if
  433. templateBuilder.Append(" </p>rn");
  434. templateBuilder.Append("</div>rn");
  435. } //end if
  436. if (footerad!="")
  437. {
  438. templateBuilder.Append("<!--底部广告显示-->rn");
  439. templateBuilder.Append("<div id="ad_footerbanner">");
  440. templateBuilder.Append(footerad.ToString());
  441. templateBuilder.Append("</div>rn");
  442. templateBuilder.Append("<!--底部广告结束-->rn");
  443. } //end if
  444. templateBuilder.Append("<div id="footer">rn");
  445. templateBuilder.Append(" <div class="wrap">rn");
  446. templateBuilder.Append(" <div id="footlinks">rn");
  447. templateBuilder.Append(" <p><a href="");
  448. templateBuilder.Append(config.Weburl.ToString().Trim());
  449. templateBuilder.Append("" target="_blank">");
  450. templateBuilder.Append(config.Webtitle.ToString().Trim());
  451. templateBuilder.Append("</a>&nbsp; ");
  452. templateBuilder.Append(config.Linktext.ToString().Trim());
  453. templateBuilder.Append("rn");
  454. if (config.Sitemapstatus==1)
  455. {
  456. templateBuilder.Append("&nbsp;<a href="");
  457. templateBuilder.Append(forumurl.ToString());
  458. templateBuilder.Append("tools/sitemap.aspx" target="_blank" title="百度论坛收录协议">Sitemap</a>rn");
  459. } //end if
  460. templateBuilder.Append(" ");
  461. templateBuilder.Append(config.Statcode.ToString().Trim());
  462. templateBuilder.Append("rn");
  463. templateBuilder.Append(" ");
  464. templateBuilder.Append(config.Icp.ToString().Trim());
  465. templateBuilder.Append("rn");
  466. templateBuilder.Append(" </p>rn");
  467. templateBuilder.Append(" <p>rn");
  468. templateBuilder.Append(" <a href="http://www.comsenz.com/" target="_blank">Comsenz Technology Ltd</a>rn");
  469. templateBuilder.Append(" - <a href="");
  470. templateBuilder.Append(forumurl.ToString());
  471. templateBuilder.Append("archiver/index.aspx" target="_blank">简洁版本</a>rn");
  472. templateBuilder.Append(" - <span class="scrolltop" onclick="window.scrollTo(0,0);">TOP</span>rn");
  473. if (config.Stylejump==1)
  474. {
  475. if (userid!=-1 || config.Guestcachepagetimeout<=0)
  476. {
  477. templateBuilder.Append(" - <span id="styleswitcher" class="dropmenu" onmouseover="showMenu(this.id)" onclick="window.location.href='");
  478. templateBuilder.Append(forumurl.ToString());
  479. templateBuilder.Append("showtemplate.aspx'">界面风格</span>rn");
  480. templateBuilder.Append(" <div id="styleswitcher_menu" class="popupmenu_popup" style="display: none;">rn");
  481. templateBuilder.Append(" <ul>rn");
  482. templateBuilder.Append(" ");
  483. templateBuilder.Append(templatelistboxoptions.ToString());
  484. templateBuilder.Append("rn");
  485. templateBuilder.Append(" </ul>rn");
  486. templateBuilder.Append(" </div>rn");
  487. } //end if
  488. } //end if
  489. templateBuilder.Append(" </p>rn");
  490. templateBuilder.Append(" </div>rn");
  491. templateBuilder.Append(" <a title="Powered by Discuz!NT" target="_blank" href="http://nt.discuz.net"><img border="0" alt="Discuz!NT" src="");
  492. templateBuilder.Append(forumurl.ToString());
  493. templateBuilder.Append("templates/");
  494. templateBuilder.Append(templatepath.ToString());
  495. templateBuilder.Append("/images/discuznt_logo.gif"/></a>rn");
  496. templateBuilder.Append(" <p id="copyright">rn");
  497. templateBuilder.Append(" Powered by <strong><a href="http://nt.discuz.net" target="_blank" title="Discuz!NT 2.6 (.NET Framework 2.0/3.x)">Discuz!NT</a></strong> <em>2.6.0</em>rn");
  498. if (config.Licensed==1)
  499. {
  500. templateBuilder.Append(" (<a href="" onclick="this.href='http://nt.discuz.net/certificate/?host='+location.href.substring(0, location.href.lastIndexOf('/'))" target="_blank">Licensed</a>)rn");
  501. } //end if
  502. templateBuilder.Append(" ");
  503. templateBuilder.Append(config.Forumcopyright.ToString().Trim());
  504. templateBuilder.Append("rn");
  505. templateBuilder.Append(" </p>rn");
  506. templateBuilder.Append(" <p id="debuginfo">rn");
  507. if (config.Debug!=0)
  508. {
  509. templateBuilder.Append(" Processed in ");
  510. templateBuilder.Append(this.Processtime.ToString().Trim());
  511. templateBuilder.Append(" second(s)rn");
  512. if (isguestcachepage==1)
  513. {
  514. templateBuilder.Append(" (Cached).rn");
  515. }
  516. else if (querycount>1)
  517. {
  518. templateBuilder.Append("  , ");
  519. templateBuilder.Append(querycount.ToString());
  520. templateBuilder.Append(" queries.rn");
  521. }
  522. else
  523. {
  524. templateBuilder.Append("         , ");
  525. templateBuilder.Append(querycount.ToString());
  526. templateBuilder.Append(" query.rn");
  527. } //end if
  528. } //end if
  529. templateBuilder.Append(" </p>rn");
  530. templateBuilder.Append(" </div>rn");
  531. templateBuilder.Append("</div>rn");
  532. templateBuilder.Append("<ul class="popupmenu_popup" id="viewpro_menu" style="display: none">rn");
  533. if (useravatar!="")
  534. {
  535. templateBuilder.Append(" <img src="");
  536. templateBuilder.Append(useravatar.ToString());
  537. templateBuilder.Append(""/>rn");
  538. } //end if
  539.  aspxrewriteurl = this.UserInfoAspxRewrite(userid);
  540. templateBuilder.Append(" <li class="popuser"><a href="");
  541. templateBuilder.Append(forumurl.ToString());
  542. templateBuilder.Append(aspxrewriteurl.ToString());
  543. templateBuilder.Append("">我的资料</a></li>rn");
  544. if (config.Enablespace==1)
  545. {
  546. templateBuilder.Append("  <li class="poplink">rn");
  547. templateBuilder.Append(" <a href="");
  548. templateBuilder.Append(forumurl.ToString());
  549. templateBuilder.Append(spaceurl.ToString());
  550. templateBuilder.Append("space/">我的空间</a>rn");
  551. templateBuilder.Append(" </li>rn");
  552. } //end if
  553. templateBuilder.Append("</ul>rn");
  554. int prentid__loop__id=0;
  555. foreach(string prentid in mainnavigationhassub)
  556. {
  557. prentid__loop__id++;
  558. templateBuilder.Append("<ul class="popupmenu_popup headermenu_popup" id="menu_");
  559. templateBuilder.Append(prentid.ToString());
  560. templateBuilder.Append("_menu" style="display: none">rn");
  561. int subnav__loop__id=0;
  562. foreach(DataRow subnav in subnavigation.Rows)
  563. {
  564. subnav__loop__id++;
  565. bool isoutput = false;
  566. if (subnav["parentid"].ToString().Trim()==prentid)
  567. {
  568. if (subnav["level"].ToString().Trim()=="0")
  569. {
  570.  isoutput = true;
  571. }
  572. else
  573. {
  574. if (subnav["level"].ToString().Trim()=="1" && userid!=-1)
  575. {
  576.  isoutput = true;
  577. }
  578. else
  579. {
  580. bool leveluseradmindi = true;
  581.  leveluseradmindi = (useradminid==3 || useradminid==1 || useradminid==2);
  582. if (subnav["level"].ToString().Trim()=="2" &&  leveluseradmindi)
  583. {
  584.  isoutput = true;
  585. } //end if
  586. if (subnav["level"].ToString().Trim()=="3" && useradminid==1)
  587. {
  588.  isoutput = true;
  589. } //end if
  590. } //end if
  591. } //end if
  592. } //end if
  593. if (isoutput)
  594. {
  595. if (subnav["id"].ToString().Trim()=="11" || subnav["id"].ToString().Trim()=="12")
  596. {
  597. if (config.Statstatus==1)
  598. {
  599. templateBuilder.Append(" " + subnav["nav"].ToString().Trim() + "rn");
  600. continue;
  601. }
  602. else
  603. {
  604. continue;
  605. } //end if
  606. } //end if
  607. if (subnav["id"].ToString().Trim()=="18")
  608. {
  609. if (config.Oltimespan>0)
  610. {
  611. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  612. continue;
  613. }
  614. else
  615. {
  616. continue;
  617. } //end if
  618. } //end if
  619. if (subnav["id"].ToString().Trim()=="24")
  620. {
  621. if (config.Enablespace==1)
  622. {
  623. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  624. continue;
  625. }
  626. else
  627. {
  628. continue;
  629. } //end if
  630. } //end if
  631. if (subnav["id"].ToString().Trim()=="25")
  632. {
  633. if (config.Enablealbum==1)
  634. {
  635. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  636. continue;
  637. }
  638. else
  639. {
  640. continue;
  641. } //end if
  642. } //end if
  643. if (subnav["id"].ToString().Trim()=="26")
  644. {
  645. if (config.Enablemall>=1)
  646. {
  647. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  648. continue;
  649. }
  650. else
  651. {
  652. continue;
  653. } //end if
  654. } //end if
  655. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  656. } //end if
  657. } //end loop
  658. templateBuilder.Append("</ul>rn");
  659. } //end loop
  660. templateBuilder.Append("<div id="quicksearch_menu" class="searchmenu" style="display: none;">rn");
  661. templateBuilder.Append(" <div onclick="document.getElementById('keywordtype').value='0';document.getElementById('quicksearch').innerHTML='帖子标题';document.getElementById('quicksearch_menu').style.display='none';" onmouseover="MouseCursor(this);">帖子标题</div>rn");
  662. if (config.Enablespace==1)
  663. {
  664. templateBuilder.Append(" <div onclick="document.getElementById('keywordtype').value='2';document.getElementById('quicksearch').innerHTML='空间日志';document.getElementById('quicksearch_menu').style.display='none';" onmouseover="MouseCursor(this);">空间日志</div>rn");
  665. } //end if
  666. if (config.Enablealbum==1)
  667. {
  668. templateBuilder.Append(" <div onclick="document.getElementById('keywordtype').value='3';document.getElementById('quicksearch').innerHTML='相册标题';document.getElementById('quicksearch_menu').style.display='none';" onmouseover="MouseCursor(this);">相册标题</div>rn");
  669. } //end if
  670. templateBuilder.Append(" <div onclick="document.getElementById('keywordtype').value='8';document.getElementById('quicksearch').innerHTML='作&nbsp;&nbsp;者';document.getElementById('quicksearch_menu').style.display='none';" onmouseover="MouseCursor(this);">作&nbsp;&nbsp;者</div>rn");
  671. templateBuilder.Append("</div>rn");
  672. templateBuilder.Append("</div>rn");
  673. templateBuilder.Append("</body>rn");
  674. templateBuilder.Append("</html>rn");
  675. Response.Write(templateBuilder.ToString());
  676. }
  677. </script>