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

SCSI/ASPI

开发平台:

Others

  1. <%@ Page language="c#" AutoEventWireup="false" EnableViewState="false" Inherits="Discuz.Album.Pages.showalbum" %>
  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:17.
  11. 本页面代码由Discuz!NT模板引擎生成于 2009/1/15 15:59:17. 
  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>  &raquo;  <a href="");
  119. templateBuilder.Append(albumurl.ToString());
  120. templateBuilder.Append("showalbumlist.aspx?cate=");
  121. templateBuilder.Append(albumcategory.Albumcateid.ToString().Trim());
  122. templateBuilder.Append("">");
  123. templateBuilder.Append(albumcategory.Title.ToString().Trim());
  124. templateBuilder.Append("</a>  &raquo;  ");
  125. templateBuilder.Append(album.Title.ToString().Trim());
  126. templateBuilder.Append("rn");
  127. templateBuilder.Append(" </div>rn");
  128. templateBuilder.Append("  <div id="headsearch">rn");
  129. templateBuilder.Append(" <div id="search">rn");
  130. templateBuilder.Append(" <form method="post" action="");
  131. templateBuilder.Append(forumurl.ToString());
  132. templateBuilder.Append("search.aspx" target="_blank" onsubmit="bind_keyword(this);">rn");
  133. templateBuilder.Append(" <input type="hidden" name="poster" />rn");
  134. templateBuilder.Append(" <input type="hidden" name="keyword" />rn");
  135. templateBuilder.Append(" <input type="hidden" name="type" value="" />rn");
  136. templateBuilder.Append(" <input id="keywordtype" type="hidden" name="keywordtype" value="0"/>rn");
  137. templateBuilder.Append(" <div id="searchbar">rn");
  138. templateBuilder.Append(" <dl>rn");
  139. templateBuilder.Append(" <dt id="quicksearch" class="s2" onclick="showMenu(this.id, false);" onmouseover="MouseCursor(this);">帖子标题</dt>rn");
  140. templateBuilder.Append(" <dd class="textinput"><input type="text" name="keywordf" value="" class="text"/></dd>rn");
  141. templateBuilder.Append(" <dd><input name="searchsubmit" type="submit" value="" class="s3"/></dd>rn");
  142. templateBuilder.Append(" </dl>rn");
  143. templateBuilder.Append(" </div>rn");
  144. templateBuilder.Append(" </form>rn");
  145. 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';}}</");
  146. templateBuilder.Append("script>rn");
  147. templateBuilder.Append(" </div>rn");
  148. templateBuilder.Append("     </div>rn");
  149. templateBuilder.Append(" </div> rn");
  150. templateBuilder.Append(" ");
  151. templateBuilder.Append(navhomemenu.ToString());
  152. templateBuilder.Append("rn");
  153. templateBuilder.Append(" <div id="ntforumbody">rn");
  154. if (!needpassword)
  155. {
  156. templateBuilder.Append(" <div class="modulebox">rn");
  157. templateBuilder.Append(" <div class="forumtitle spacetitle">rn");
  158. templateBuilder.Append(" <h2> rn");
  159. templateBuilder.Append(" ");
  160. templateBuilder.Append(album.Title.ToString().Trim());
  161. templateBuilder.Append(" <strong>rn");
  162. templateBuilder.Append(" <script type="text/javascript">rn");
  163. templateBuilder.Append(" document.write(window.location);rn");
  164. templateBuilder.Append(" </");
  165. templateBuilder.Append("script>rn");
  166. templateBuilder.Append(" </strong>(<a href="###" onclick="setcopy(window.location.href.replace('###','') + '&page=");
  167. templateBuilder.Append(currentpage.ToString());
  168. templateBuilder.Append("', '已经复制到剪贴板');" class="copylink">复制到剪帖板</a>)rn");
  169. templateBuilder.Append(" </h2>rn");
  170. templateBuilder.Append(" <em>rn");
  171. if (config.Silverlight==1)
  172. {
  173. templateBuilder.Append(" <a id="silverlightalbum" target="_blank" title="Silverlight相册展示" href="silverlight/album/index.html?albumid=");
  174. templateBuilder.Append(album.Albumid.ToString().Trim());
  175. templateBuilder.Append(""><img src="templates/");
  176. templateBuilder.Append(templatepath.ToString());
  177. templateBuilder.Append("/images/album/button_seeit.gif" alt="展开" /></a>rn");
  178. } //end if
  179. templateBuilder.Append("  </em>rn");
  180. templateBuilder.Append(" </div>rn");
  181. templateBuilder.Append(" <div class="controlPhoto">rn");
  182. templateBuilder.Append(" <p>rn");
  183. if (config.Enablespace==1)
  184. {
  185. templateBuilder.Append("<a href="");
  186. templateBuilder.Append(spaceurl.ToString());
  187. templateBuilder.Append("space/?uid=");
  188. templateBuilder.Append(album.Userid.ToString().Trim());
  189. templateBuilder.Append("" target="_blank"><img src="templates/");
  190. templateBuilder.Append(templatepath.ToString());
  191. templateBuilder.Append("/images/album/dotspace.gif" />");
  192. templateBuilder.Append(album.Username.ToString().Trim());
  193. templateBuilder.Append("的空间</a>rn");
  194. } //end if
  195.  aspxrewriteurl = this.UserInfoAspxRewrite(album.Userid);
  196. templateBuilder.Append(" <a href="");
  197. templateBuilder.Append(forumurl.ToString());
  198. templateBuilder.Append(aspxrewriteurl.ToString());
  199. templateBuilder.Append(""><img src="templates/");
  200. templateBuilder.Append(templatepath.ToString());
  201. templateBuilder.Append("/images/album/user_info.gif"  alt="用户信息:"/>");
  202. templateBuilder.Append(album.Username.ToString().Trim());
  203. templateBuilder.Append("的用户资料</a>rn");
  204. templateBuilder.Append(" <a href="");
  205. templateBuilder.Append(albumurl.ToString());
  206. templateBuilder.Append("showalbumlist.aspx?uid=");
  207. templateBuilder.Append(album.Userid.ToString().Trim());
  208. templateBuilder.Append(""><img src="templates/");
  209. templateBuilder.Append(templatepath.ToString());
  210. templateBuilder.Append("/images/album/user_album.gif"  alt="用户相册"/>");
  211. templateBuilder.Append(album.Username.ToString().Trim());
  212. templateBuilder.Append("的全部相册</a>rn");
  213. templateBuilder.Append(" </p>rn");
  214. templateBuilder.Append(" <p>rn");
  215. if (album.Userid==userid)
  216. {
  217. templateBuilder.Append("  <a href="");
  218. templateBuilder.Append(forumurl.ToString());
  219. templateBuilder.Append("usercpspacemanagephoto.aspx?albumid=");
  220. templateBuilder.Append(album.Albumid.ToString().Trim());
  221. templateBuilder.Append("" target="_blank"><img src="templates/");
  222. templateBuilder.Append(templatepath.ToString());
  223. templateBuilder.Append("/images/album/album_edit.gif" />管理</a>rn");
  224. } //end if
  225. templateBuilder.Append(" <a href="");
  226. templateBuilder.Append(forumurl.ToString());
  227. templateBuilder.Append("favorites.aspx?albumid=");
  228. templateBuilder.Append(album.Albumid.ToString().Trim());
  229. templateBuilder.Append(""><img src="templates/");
  230. templateBuilder.Append(templatepath.ToString());
  231. templateBuilder.Append("/images/album/album_fav.gif" alt="收藏" title="收藏" />收藏</a>rn");
  232. templateBuilder.Append(" </p>rn");
  233. templateBuilder.Append(" </div>rn");
  234. if (photolist.Count>0)
  235. {
  236. templateBuilder.Append(" <div class="Photo">rn");
  237. templateBuilder.Append(" <table width="100%" border="0" cellspacing="0" cellpadding="0">rn");
  238. int photoindex = 1;
  239. int photo__loop__id=0;
  240. foreach(PhotoInfo photo in photolist)
  241. {
  242. photo__loop__id++;
  243. if (photoindex==1)
  244. {
  245. templateBuilder.Append(" <tr>rn");
  246. } //end if
  247. templateBuilder.Append(" <td>rn");
  248. templateBuilder.Append(" <div>rn");
  249. templateBuilder.Append(" <a href="");
  250. templateBuilder.Append(albumurl.ToString());
  251. templateBuilder.Append("showphoto.aspx?photoid=");
  252. templateBuilder.Append(photo.Photoid.ToString().Trim());
  253. templateBuilder.Append(""><img src="");
  254. templateBuilder.Append(photo.Filename.ToString().Trim());
  255. templateBuilder.Append("" alt="");
  256. templateBuilder.Append(photo.Title.ToString().Trim());
  257. templateBuilder.Append("" title="");
  258. templateBuilder.Append(photo.Title.ToString().Trim());
  259. templateBuilder.Append("" /></a>rn");
  260. templateBuilder.Append(" </div>rn");
  261. templateBuilder.Append(" <p>rn");
  262. templateBuilder.Append(" <script language="javascript" type="text/javascript">rn");
  263. templateBuilder.Append(" ShowFormatBytesStr(");
  264. templateBuilder.Append(photo.Filesize.ToString().Trim());
  265. templateBuilder.Append(");rn");
  266. templateBuilder.Append(" </");
  267. templateBuilder.Append("script>rn");
  268. templateBuilder.Append(" </p>rn");
  269. templateBuilder.Append(" <h5><a href="");
  270. templateBuilder.Append(albumurl.ToString());
  271. templateBuilder.Append("showphoto.aspx?photoid=");
  272. templateBuilder.Append(photo.Photoid.ToString().Trim());
  273. templateBuilder.Append("">");
  274. templateBuilder.Append(photo.Title.ToString().Trim());
  275. templateBuilder.Append("</a></h5>rn");
  276. templateBuilder.Append(" </td> rn");
  277. if (photoindex==4)
  278. {
  279. templateBuilder.Append(" </tr>rn");
  280.  photoindex = 1;
  281. }
  282. else
  283. {
  284.  photoindex = photoindex+1;
  285. } //end if
  286. } //end loop
  287. templateBuilder.Append(" </table>rn");
  288. templateBuilder.Append(" </div>rn");
  289. templateBuilder.Append(" <div class="ntforumpage" style="margin-left:45px;">rn");
  290. templateBuilder.Append(" ");
  291. templateBuilder.Append(pagenumbers.ToString());
  292. templateBuilder.Append("rn");
  293. templateBuilder.Append(" </div>rn");
  294. }
  295. else
  296. {
  297. templateBuilder.Append("<div class="box message">rn");
  298. templateBuilder.Append(" <h1>相册 提示信息</h1>rn");
  299. templateBuilder.Append(" <p>");
  300. templateBuilder.Append(msgbox_text.ToString());
  301. templateBuilder.Append("</p>rn");
  302. if (msgbox_url!="")
  303. {
  304. templateBuilder.Append(" <a href="");
  305. templateBuilder.Append(msgbox_url.ToString());
  306. templateBuilder.Append("">如果浏览器没有转向, 请点击这里.</a>rn");
  307. } //end if
  308. templateBuilder.Append("</div>rn");
  309. } //end if
  310. templateBuilder.Append(" </div>rn");
  311. }
  312. else
  313. {
  314. templateBuilder.Append(" <div class="modulebox">rn");
  315. templateBuilder.Append(" <div class="forumtitle">rn");
  316. templateBuilder.Append(" <h2>此相册已被设置密码</h2>rn");
  317. templateBuilder.Append(" </div>rn");
  318. templateBuilder.Append(" <div class="forumpassword">rn");
  319. templateBuilder.Append(" <form id="enteralbum" name="enteralbum" method="post" action="">rn");
  320. templateBuilder.Append(" <label for="password">请输入密码:</label><input name="albumpassword" type="password" id="albumpassword" size="20" class="colorblue" onfocus="this.className='colorfocus';" onblur="this.className='colorblue';" />rn");
  321. templateBuilder.Append(" <p><input type="submit"  value="确定" class="lightbutton"/></p>rn");
  322. templateBuilder.Append(" </form>rn");
  323. templateBuilder.Append(" </div>rn");
  324. templateBuilder.Append(" </div>rn");
  325. } //end if
  326. templateBuilder.Append(" </div>rn");
  327. }
  328. else
  329. {
  330. templateBuilder.Append("<div class="box message">rn");
  331. templateBuilder.Append(" <h1>出现了");
  332. templateBuilder.Append(page_err.ToString());
  333. templateBuilder.Append("个错误</h1>rn");
  334. templateBuilder.Append(" <p>");
  335. templateBuilder.Append(msgbox_text.ToString());
  336. templateBuilder.Append("</p>rn");
  337. templateBuilder.Append(" <p class="errorback">rn");
  338. templateBuilder.Append(" <script type="text/javascript">rn");
  339. templateBuilder.Append(" if(");
  340. templateBuilder.Append(msgbox_showbacklink.ToString());
  341. templateBuilder.Append(")rn");
  342. templateBuilder.Append(" {rn");
  343. templateBuilder.Append(" document.write("<a href=\"");
  344. templateBuilder.Append(msgbox_backlink.ToString());
  345. templateBuilder.Append("\">返回上一步</a> &nbsp; &nbsp;|&nbsp; &nbsp  ");rn");
  346. templateBuilder.Append(" }rn");
  347. templateBuilder.Append(" </");
  348. templateBuilder.Append("script>rn");
  349. templateBuilder.Append(" <a href="forumindex.aspx">论坛首页</a>rn");
  350. if (usergroupid==7)
  351. {
  352. templateBuilder.Append("  &nbsp; &nbsp|&nbsp; &nbsp; <a href="register.aspx">注册</a>rn");
  353. } //end if
  354. templateBuilder.Append(" </p>rn");
  355. templateBuilder.Append("</div>rn");
  356. } //end if
  357. if (footerad!="")
  358. {
  359. templateBuilder.Append("<!--底部广告显示-->rn");
  360. templateBuilder.Append("<div id="ad_footerbanner">");
  361. templateBuilder.Append(footerad.ToString());
  362. templateBuilder.Append("</div>rn");
  363. templateBuilder.Append("<!--底部广告结束-->rn");
  364. } //end if
  365. templateBuilder.Append("<div id="footer">rn");
  366. templateBuilder.Append(" <div class="wrap">rn");
  367. templateBuilder.Append(" <div id="footlinks">rn");
  368. templateBuilder.Append(" <p><a href="");
  369. templateBuilder.Append(config.Weburl.ToString().Trim());
  370. templateBuilder.Append("" target="_blank">");
  371. templateBuilder.Append(config.Webtitle.ToString().Trim());
  372. templateBuilder.Append("</a>&nbsp; ");
  373. templateBuilder.Append(config.Linktext.ToString().Trim());
  374. templateBuilder.Append("rn");
  375. if (config.Sitemapstatus==1)
  376. {
  377. templateBuilder.Append("&nbsp;<a href="");
  378. templateBuilder.Append(forumurl.ToString());
  379. templateBuilder.Append("tools/sitemap.aspx" target="_blank" title="百度论坛收录协议">Sitemap</a>rn");
  380. } //end if
  381. templateBuilder.Append(" ");
  382. templateBuilder.Append(config.Statcode.ToString().Trim());
  383. templateBuilder.Append("rn");
  384. templateBuilder.Append(" ");
  385. templateBuilder.Append(config.Icp.ToString().Trim());
  386. templateBuilder.Append("rn");
  387. templateBuilder.Append(" </p>rn");
  388. templateBuilder.Append(" <p>rn");
  389. templateBuilder.Append(" <a href="http://www.comsenz.com/" target="_blank">Comsenz Technology Ltd</a>rn");
  390. templateBuilder.Append(" - <a href="");
  391. templateBuilder.Append(forumurl.ToString());
  392. templateBuilder.Append("archiver/index.aspx" target="_blank">简洁版本</a>rn");
  393. templateBuilder.Append(" - <span class="scrolltop" onclick="window.scrollTo(0,0);">TOP</span>rn");
  394. if (config.Stylejump==1)
  395. {
  396. if (userid!=-1 || config.Guestcachepagetimeout<=0)
  397. {
  398. templateBuilder.Append(" - <span id="styleswitcher" class="dropmenu" onmouseover="showMenu(this.id)" onclick="window.location.href='");
  399. templateBuilder.Append(forumurl.ToString());
  400. templateBuilder.Append("showtemplate.aspx'">界面风格</span>rn");
  401. templateBuilder.Append(" <div id="styleswitcher_menu" class="popupmenu_popup" style="display: none;">rn");
  402. templateBuilder.Append(" <ul>rn");
  403. templateBuilder.Append(" ");
  404. templateBuilder.Append(templatelistboxoptions.ToString());
  405. templateBuilder.Append("rn");
  406. templateBuilder.Append(" </ul>rn");
  407. templateBuilder.Append(" </div>rn");
  408. } //end if
  409. } //end if
  410. templateBuilder.Append(" </p>rn");
  411. templateBuilder.Append(" </div>rn");
  412. templateBuilder.Append(" <a title="Powered by Discuz!NT" target="_blank" href="http://nt.discuz.net"><img border="0" alt="Discuz!NT" src="");
  413. templateBuilder.Append(forumurl.ToString());
  414. templateBuilder.Append("templates/");
  415. templateBuilder.Append(templatepath.ToString());
  416. templateBuilder.Append("/images/discuznt_logo.gif"/></a>rn");
  417. templateBuilder.Append(" <p id="copyright">rn");
  418. 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");
  419. if (config.Licensed==1)
  420. {
  421. 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");
  422. } //end if
  423. templateBuilder.Append(" ");
  424. templateBuilder.Append(config.Forumcopyright.ToString().Trim());
  425. templateBuilder.Append("rn");
  426. templateBuilder.Append(" </p>rn");
  427. templateBuilder.Append(" <p id="debuginfo">rn");
  428. if (config.Debug!=0)
  429. {
  430. templateBuilder.Append(" Processed in ");
  431. templateBuilder.Append(this.Processtime.ToString().Trim());
  432. templateBuilder.Append(" second(s)rn");
  433. if (isguestcachepage==1)
  434. {
  435. templateBuilder.Append(" (Cached).rn");
  436. }
  437. else if (querycount>1)
  438. {
  439. templateBuilder.Append("  , ");
  440. templateBuilder.Append(querycount.ToString());
  441. templateBuilder.Append(" queries.rn");
  442. }
  443. else
  444. {
  445. templateBuilder.Append("         , ");
  446. templateBuilder.Append(querycount.ToString());
  447. templateBuilder.Append(" query.rn");
  448. } //end if
  449. } //end if
  450. templateBuilder.Append(" </p>rn");
  451. templateBuilder.Append(" </div>rn");
  452. templateBuilder.Append("</div>rn");
  453. templateBuilder.Append("<ul class="popupmenu_popup" id="viewpro_menu" style="display: none">rn");
  454. if (useravatar!="")
  455. {
  456. templateBuilder.Append(" <img src="");
  457. templateBuilder.Append(useravatar.ToString());
  458. templateBuilder.Append(""/>rn");
  459. } //end if
  460.  aspxrewriteurl = this.UserInfoAspxRewrite(userid);
  461. templateBuilder.Append(" <li class="popuser"><a href="");
  462. templateBuilder.Append(forumurl.ToString());
  463. templateBuilder.Append(aspxrewriteurl.ToString());
  464. templateBuilder.Append("">我的资料</a></li>rn");
  465. if (config.Enablespace==1)
  466. {
  467. templateBuilder.Append("  <li class="poplink">rn");
  468. templateBuilder.Append(" <a href="");
  469. templateBuilder.Append(forumurl.ToString());
  470. templateBuilder.Append(spaceurl.ToString());
  471. templateBuilder.Append("space/">我的空间</a>rn");
  472. templateBuilder.Append(" </li>rn");
  473. } //end if
  474. templateBuilder.Append("</ul>rn");
  475. int prentid__loop__id=0;
  476. foreach(string prentid in mainnavigationhassub)
  477. {
  478. prentid__loop__id++;
  479. templateBuilder.Append("<ul class="popupmenu_popup headermenu_popup" id="menu_");
  480. templateBuilder.Append(prentid.ToString());
  481. templateBuilder.Append("_menu" style="display: none">rn");
  482. int subnav__loop__id=0;
  483. foreach(DataRow subnav in subnavigation.Rows)
  484. {
  485. subnav__loop__id++;
  486. bool isoutput = false;
  487. if (subnav["parentid"].ToString().Trim()==prentid)
  488. {
  489. if (subnav["level"].ToString().Trim()=="0")
  490. {
  491.  isoutput = true;
  492. }
  493. else
  494. {
  495. if (subnav["level"].ToString().Trim()=="1" && userid!=-1)
  496. {
  497.  isoutput = true;
  498. }
  499. else
  500. {
  501. bool leveluseradmindi = true;
  502.  leveluseradmindi = (useradminid==3 || useradminid==1 || useradminid==2);
  503. if (subnav["level"].ToString().Trim()=="2" &&  leveluseradmindi)
  504. {
  505.  isoutput = true;
  506. } //end if
  507. if (subnav["level"].ToString().Trim()=="3" && useradminid==1)
  508. {
  509.  isoutput = true;
  510. } //end if
  511. } //end if
  512. } //end if
  513. } //end if
  514. if (isoutput)
  515. {
  516. if (subnav["id"].ToString().Trim()=="11" || subnav["id"].ToString().Trim()=="12")
  517. {
  518. if (config.Statstatus==1)
  519. {
  520. templateBuilder.Append(" " + subnav["nav"].ToString().Trim() + "rn");
  521. continue;
  522. }
  523. else
  524. {
  525. continue;
  526. } //end if
  527. } //end if
  528. if (subnav["id"].ToString().Trim()=="18")
  529. {
  530. if (config.Oltimespan>0)
  531. {
  532. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  533. continue;
  534. }
  535. else
  536. {
  537. continue;
  538. } //end if
  539. } //end if
  540. if (subnav["id"].ToString().Trim()=="24")
  541. {
  542. if (config.Enablespace==1)
  543. {
  544. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  545. continue;
  546. }
  547. else
  548. {
  549. continue;
  550. } //end if
  551. } //end if
  552. if (subnav["id"].ToString().Trim()=="25")
  553. {
  554. if (config.Enablealbum==1)
  555. {
  556. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  557. continue;
  558. }
  559. else
  560. {
  561. continue;
  562. } //end if
  563. } //end if
  564. if (subnav["id"].ToString().Trim()=="26")
  565. {
  566. if (config.Enablemall>=1)
  567. {
  568. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  569. continue;
  570. }
  571. else
  572. {
  573. continue;
  574. } //end if
  575. } //end if
  576. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  577. } //end if
  578. } //end loop
  579. templateBuilder.Append("</ul>rn");
  580. } //end loop
  581. templateBuilder.Append("<div id="quicksearch_menu" class="searchmenu" style="display: none;">rn");
  582. 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");
  583. if (config.Enablespace==1)
  584. {
  585. 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");
  586. } //end if
  587. if (config.Enablealbum==1)
  588. {
  589. 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");
  590. } //end if
  591. 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");
  592. templateBuilder.Append("</div>rn");
  593. templateBuilder.Append("</div>rn");
  594. templateBuilder.Append("</body>rn");
  595. templateBuilder.Append("</html>rn");
  596. Response.Write(templateBuilder.ToString());
  597. }
  598. </script>