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

SCSI/ASPI

开发平台:

Others

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