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

SCSI/ASPI

开发平台:

Others

  1. <%@ Page language="c#" AutoEventWireup="false" EnableViewState="false" Inherits="Discuz.Album.Pages.showphoto" %>
  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:31.
  11. 本页面代码由Discuz!NT模板引擎生成于 2009/1/15 15:59:31. 
  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 (ispost)
  105. {
  106. templateBuilder.Append("<div class="box message">rn");
  107. templateBuilder.Append(" <h1>Discuz!NT Board 提示信息</h1>rn");
  108. templateBuilder.Append(" <p>");
  109. templateBuilder.Append(msgbox_text.ToString());
  110. templateBuilder.Append("</p>rn");
  111. if (msgbox_url!="")
  112. {
  113. templateBuilder.Append(" <p><a href="");
  114. templateBuilder.Append(msgbox_url.ToString());
  115. templateBuilder.Append("">如果浏览器没有转向, 请点击这里.</a></p>rn");
  116. } //end if
  117. templateBuilder.Append("</div>rn");
  118. templateBuilder.Append("</div>rn");
  119. }
  120. else
  121. {
  122. templateBuilder.Append(" <script type="text/javascript" src="javascript/ajax.js"></");
  123. templateBuilder.Append("script>rn");
  124. templateBuilder.Append(" <script type="text/javascript" src="javascript/post.js"></");
  125. templateBuilder.Append("script>rn");
  126. templateBuilder.Append(" <script type="text/javascript">rn");
  127. templateBuilder.Append(" var templatepath = '");
  128. templateBuilder.Append(templatepath.ToString());
  129. templateBuilder.Append("';rn");
  130. templateBuilder.Append(" </");
  131. templateBuilder.Append("script>rn");
  132. templateBuilder.Append(" <script type="text/javascript" src="javascript/template_showphoto.js"></");
  133. templateBuilder.Append("script>rn");
  134. if (config.Enablealbum==1)
  135. {
  136. templateBuilder.Append(" <div id="info">rn");
  137. templateBuilder.Append(" <a href="showphotolist.aspx?type=2">最新图片</a>rn");
  138. templateBuilder.Append(" <a href="showphotolist.aspx?type=1">最多评论</a>rn");
  139. templateBuilder.Append(" <a href="showphotolist.aspx?type=3" class="notabs">最多收藏</a>rn");
  140. templateBuilder.Append(" </div> rn");
  141. } //end if
  142. templateBuilder.Append(" <div id="foruminfo">rn");
  143. templateBuilder.Append(" <div id="userinfo">rn");
  144. templateBuilder.Append(" <a href="");
  145. templateBuilder.Append(config.Albumurl.ToString().Trim());
  146. templateBuilder.Append("" id="NavHome" onmouseover="showMenu(this.id);" onmouseout="showMenu(this.id);">");
  147. templateBuilder.Append(config.Albumname.ToString().Trim());
  148. templateBuilder.Append("首页</a>  &raquo;  <a href="showalbumlist.aspx?cate=");
  149. templateBuilder.Append(albumcategory.Albumcateid.ToString().Trim());
  150. templateBuilder.Append("">");
  151. templateBuilder.Append(albumcategory.Title.ToString().Trim());
  152. templateBuilder.Append("</a>  &raquo;  <a href="showalbum.aspx?albumid=");
  153. templateBuilder.Append(album.Albumid.ToString().Trim());
  154. templateBuilder.Append("">");
  155. templateBuilder.Append(album.Title.ToString().Trim());
  156. templateBuilder.Append("</a>rn");
  157. templateBuilder.Append(" </div>rn");
  158. templateBuilder.Append("    <div id="headsearch">rn");
  159. templateBuilder.Append(" <div id="search">rn");
  160. templateBuilder.Append(" <form method="post" action="");
  161. templateBuilder.Append(forumurl.ToString());
  162. templateBuilder.Append("search.aspx" target="_blank" onsubmit="bind_keyword(this);">rn");
  163. templateBuilder.Append(" <input type="hidden" name="poster" />rn");
  164. templateBuilder.Append(" <input type="hidden" name="keyword" />rn");
  165. templateBuilder.Append(" <input type="hidden" name="type" value="" />rn");
  166. templateBuilder.Append(" <input id="keywordtype" type="hidden" name="keywordtype" value="0"/>rn");
  167. templateBuilder.Append(" <div id="searchbar">rn");
  168. templateBuilder.Append(" <dl>rn");
  169. templateBuilder.Append(" <dt id="quicksearch" class="s2" onclick="showMenu(this.id, false);" onmouseover="MouseCursor(this);">帖子标题</dt>rn");
  170. templateBuilder.Append(" <dd class="textinput"><input type="text" name="keywordf" value="" class="text"/></dd>rn");
  171. templateBuilder.Append(" <dd><input name="searchsubmit" type="submit" value="" class="s3"/></dd>rn");
  172. templateBuilder.Append(" </dl>rn");
  173. templateBuilder.Append(" </div>rn");
  174. templateBuilder.Append(" </form>rn");
  175. 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';}}</");
  176. templateBuilder.Append("script>rn");
  177. templateBuilder.Append(" </div>rn");
  178. templateBuilder.Append(" </div>rn");
  179. templateBuilder.Append(" </div>rn");
  180. templateBuilder.Append(" ");
  181. templateBuilder.Append(navhomemenu.ToString());
  182. templateBuilder.Append("rn");
  183. templateBuilder.Append(" <div id="ntforumbody" style="overflow:visible;">rn");
  184. if (!needpassword)
  185. {
  186. templateBuilder.Append(" <div class="modulebox">rn");
  187. templateBuilder.Append(" <div class="forumtitle">rn");
  188. templateBuilder.Append(" <h2>");
  189. templateBuilder.Append(photo.Title.ToString().Trim());
  190. templateBuilder.Append("</h2>rn");
  191. templateBuilder.Append(" <em>rn");
  192. if (config.Silverlight==1)
  193. {
  194. templateBuilder.Append(" <a id="silverlightalbum" target="_blank" title="Silverlight相册展示" href="silverlight/album/index.html?albumid=");
  195. templateBuilder.Append(album.Albumid.ToString().Trim());
  196. templateBuilder.Append("">Silverlight酷炫体验</a>&nbsp;rn");
  197. } //end if
  198. templateBuilder.Append(" <a title="幻灯片播放" href="javascript:void(0);" onclick="pptPhoto();">幻灯展示</a>&nbsp;<a href="showalbum.aspx?albumid=");
  199. templateBuilder.Append(album.Albumid.ToString().Trim());
  200. templateBuilder.Append("">+ 更多</a></em>rn");
  201. templateBuilder.Append(" </div>rn");
  202. templateBuilder.Append(" <div class="scrollphoto">rn");
  203. templateBuilder.Append(" <ul>rn");
  204. templateBuilder.Append(" <li id="scrollleft" style='cursor: pointer;margin-top:8px;"' onclick="scrollHiddenDiv($('photonav'), -90);"><img src='templates/");
  205. templateBuilder.Append(templatepath.ToString());
  206. templateBuilder.Append("/images/album/scrollarrowleft.jpg' alt='向左移动' />rn");
  207. templateBuilder.Append(" </li>rn");
  208. templateBuilder.Append(" <li style='width: 810px;'><div style='position:relative;'><div class='photonavbar' id="photonav" style='overflow: hidden;width:810px;'>加载导航图,请稍候...</div></div>rn");
  209. templateBuilder.Append(" </li>rn");
  210. templateBuilder.Append(" <li id="scrollright" style='cursor: pointer;margin-top:8px;"' onclick="scrollHiddenDiv($('photonav'), 90);"><img src="templates/");
  211. templateBuilder.Append(templatepath.ToString());
  212. templateBuilder.Append("/images/album/scrollarrowright.jpg" alt="向右移动" />rn");
  213. templateBuilder.Append(" </li>rn");
  214. templateBuilder.Append(" </ul>rn");
  215. templateBuilder.Append(" </div>rn");
  216. templateBuilder.Append(" <script type="text/javascript">shownavbar(");
  217. templateBuilder.Append(photo.Albumid.ToString().Trim());
  218. templateBuilder.Append(", ");
  219. templateBuilder.Append(photo.Photoid.ToString().Trim());
  220. templateBuilder.Append(");</");
  221. templateBuilder.Append("script>rn");
  222. templateBuilder.Append(" <div class="photoshowBox">rn");
  223. templateBuilder.Append(" <div class="boxbody">rn");
  224. templateBuilder.Append(" <div class="Photo" style="margin: 10px 20px;">rn");
  225. templateBuilder.Append(" <strong>rn");
  226. templateBuilder.Append(" <cite>rn");
  227. if (config.Enablespace==1)
  228. {
  229. templateBuilder.Append("<a href="");
  230. templateBuilder.Append(spaceurl.ToString());
  231. templateBuilder.Append("space/?uid=");
  232. templateBuilder.Append(photo.Userid.ToString().Trim());
  233. templateBuilder.Append("" target="_blank">");
  234. templateBuilder.Append(photo.Username.ToString().Trim());
  235. templateBuilder.Append("的空间</a>rn");
  236. } //end if
  237. templateBuilder.Append(" </cite>rn");
  238. templateBuilder.Append(" <cite>rn");
  239. templateBuilder.Append(" <a href="");
  240. templateBuilder.Append(albumurl.ToString());
  241. templateBuilder.Append("showalbumlist.aspx?uid=");
  242. templateBuilder.Append(photo.Userid.ToString().Trim());
  243. templateBuilder.Append("" target="_blank">");
  244. templateBuilder.Append(photo.Username.ToString().Trim());
  245. templateBuilder.Append("的相册</a>rn");
  246. templateBuilder.Append(" </cite>rn");
  247. templateBuilder.Append(" <cite>大小:rn");
  248. templateBuilder.Append(" <script type="text/javascript">rn");
  249. templateBuilder.Append(" ShowFormatBytesStr(");
  250. templateBuilder.Append(photo.Filesize.ToString().Trim());
  251. templateBuilder.Append(");rn");
  252. templateBuilder.Append(" </");
  253. templateBuilder.Append("script>rn");
  254. templateBuilder.Append(" </cite> rn");
  255. templateBuilder.Append(" <cite>上传时间: ");
  256. templateBuilder.Append(photo.Postdate.ToString().Trim());
  257. templateBuilder.Append("</cite>rn");
  258. templateBuilder.Append(" <cite>浏览量: ");
  259. templateBuilder.Append(photo.Views.ToString().Trim());
  260. templateBuilder.Append("</cite>rn");
  261. templateBuilder.Append(" <cite>评论数: ");
  262. templateBuilder.Append(comments.Count.ToString().Trim());
  263. templateBuilder.Append("</cite>rn");
  264. templateBuilder.Append(" </strong>rn");
  265. templateBuilder.Append(" <div class="PhotoPIc" style="width: 685px"><a id="nextImgOnPhoto" href="");
  266. templateBuilder.Append(albumurl.ToString());
  267. templateBuilder.Append("showphoto.aspx?photoid=");
  268. templateBuilder.Append(photo.Photoid.ToString().Trim());
  269. templateBuilder.Append("&go=next" alt="点击图片查看下一张" title="点击图片查看下一张">rn");
  270. templateBuilder.Append(" <img border="0" name="bannerPhotoADrotator" style="FILTER: revealTrans(duration=2,transition=20); max-height: 550px;max-width:685px;" onload="resizePhoto(this);" alt="");
  271. templateBuilder.Append(photo.Title.ToString().Trim());
  272. templateBuilder.Append("" id="bannerPhotoADrotator" title="");
  273. templateBuilder.Append(photo.Title.ToString().Trim());
  274. templateBuilder.Append("" src="");
  275. templateBuilder.Append(photo.Filename.ToString().Trim());
  276. templateBuilder.Append("" />rn");
  277. templateBuilder.Append(" </a></div>rn");
  278. templateBuilder.Append(" <br/>rn");
  279. templateBuilder.Append(" <div align="center" valign="top">rn");
  280. templateBuilder.Append(" <p>rn");
  281. templateBuilder.Append(" <div id="stopPhotobutton" style="display: none;">rn");
  282. templateBuilder.Append(" <input type="button" name="stop" value="停止播放" onClick="stopPhoto();" />rn");
  283. templateBuilder.Append(" </div>rn");
  284. templateBuilder.Append(" </p>rn");
  285. templateBuilder.Append(" </div>rn");
  286. templateBuilder.Append(" <div class="PageBox">rn");
  287. templateBuilder.Append(" <div class="PageBoxLeft"><a id="prevImg" href="");
  288. templateBuilder.Append(albumurl.ToString());
  289. templateBuilder.Append("showphoto.aspx?photoid=");
  290. templateBuilder.Append(photo.Photoid.ToString().Trim());
  291. templateBuilder.Append("&go=prev">上一张</a><cite>第 <span id="photoIndex"><em>1</em>/1</span> 张</cite> <a id="nextImg" href="showphoto.aspx?photoid=");
  292. templateBuilder.Append(photo.Photoid.ToString().Trim());
  293. templateBuilder.Append("&go=next">下一张</a></div>rn");
  294. if (userid!=-1)
  295. {
  296. templateBuilder.Append(" <div class="Pageboxright">rn");
  297. templateBuilder.Append(" <script type="text/javascript">rn");
  298. templateBuilder.Append(" enableinfo = '<img src="templates/");
  299. templateBuilder.Append(templatepath.ToString());
  300. templateBuilder.Append("/images/album/buttonreport.gif" alt="举报此图片" />';rn");
  301. templateBuilder.Append(" show_report_button("<img src=templates/");
  302. templateBuilder.Append(templatepath.ToString());
  303. templateBuilder.Append("/images/album/reportfinish.gif alt=已经举报此图片 />");rn");
  304. templateBuilder.Append(" enableinfo = '<span class="commenreport">举报<span>';rn");
  305. templateBuilder.Append(" </");
  306. templateBuilder.Append("script>rn");
  307. templateBuilder.Append(" </div>rn");
  308. } //end if
  309. templateBuilder.Append(" </div>rn");
  310. templateBuilder.Append(" <strong>");
  311. templateBuilder.Append(photo.Description.ToString().Trim());
  312. templateBuilder.Append("</strong>rn");
  313. if (editable || comments.Count>0)
  314. {
  315. templateBuilder.Append(" <p class="commentstitle"><a name="comments"></a>rn");
  316. if (editable)
  317. {
  318. templateBuilder.Append(" <form id="commentform" name="commentform" method="post" action=""><input name="delcommentid" type="hidden" /></form>rn");
  319. templateBuilder.Append(" <script type="text/javascript">rn");
  320. templateBuilder.Append(" function del_comment(cid)rn");
  321. templateBuilder.Append(" {rn");
  322. templateBuilder.Append(" if (confirm('确定要删除吗?'))rn");
  323. templateBuilder.Append(" {rn");
  324. templateBuilder.Append(" var form = $("commentform");rn");
  325. templateBuilder.Append(" form.delcommentid.value = cid;rn");
  326. templateBuilder.Append(" form.submit();rn");
  327. templateBuilder.Append(" }rn");
  328. templateBuilder.Append(" return false;rn");
  329. templateBuilder.Append(" }rn");
  330. templateBuilder.Append(" </");
  331. templateBuilder.Append("script>rn");
  332. } //end if
  333. if (photo.Comments>0)
  334. {
  335. templateBuilder.Append(" 评论 (");
  336. templateBuilder.Append(photo.Comments.ToString().Trim());
  337. templateBuilder.Append(")rn");
  338. } //end if
  339. templateBuilder.Append(" </p>rn");
  340. } //end if
  341. templateBuilder.Append(" </div>rn");
  342. int rowindex = 1;
  343. int comment__loop__id=0;
  344. foreach(PhotoCommentInfo comment in comments)
  345. {
  346. comment__loop__id++;
  347. templateBuilder.Append(" <div class="rn");
  348. if (rowindex%2==0)
  349. {
  350. templateBuilder.Append("reviewbox2rn");
  351. }
  352. else
  353. {
  354. templateBuilder.Append("reviewboxrn");
  355. } //end if
  356. templateBuilder.Append("">rn");
  357. templateBuilder.Append(" <div class="reviewboxleft">");
  358. templateBuilder.Append(rowindex.ToString());
  359. templateBuilder.Append(".</div>rn");
  360. templateBuilder.Append(" <p>");
  361. templateBuilder.Append(comment.Content.ToString().Trim());
  362. templateBuilder.Append("</p>rn");
  363. templateBuilder.Append(" <div class="reviewwriterbox">rn");
  364. templateBuilder.Append(" <div class="ReviewManager">rn");
  365. if (comment.Userid!=-1)
  366. {
  367.  aspxrewriteurl = this.UserInfoAspxRewrite(comment.Userid);
  368. templateBuilder.Append(" <a href="");
  369. templateBuilder.Append(forumurl.ToString());
  370. templateBuilder.Append(aspxrewriteurl.ToString());
  371. templateBuilder.Append("">");
  372. templateBuilder.Append(comment.Username.ToString().Trim());
  373. templateBuilder.Append("</a>rn");
  374. }
  375. else
  376. {
  377. templateBuilder.Append(comment.Username.ToString().Trim());
  378. templateBuilder.Append("rn");
  379. } //end if
  380. templateBuilder.Append("      ");
  381. templateBuilder.Append(comment.Postdatetime.ToString().Trim());
  382. templateBuilder.Append("</div>rn");
  383. templateBuilder.Append(" <em>rn");
  384. if (userid!=-1)
  385. {
  386. templateBuilder.Append(" <script type="text/javascript">rn");
  387. templateBuilder.Append(" show_report_button('<span class=reportfinish>已举报</span>');rn");
  388. templateBuilder.Append(" </");
  389. templateBuilder.Append("script>rn");
  390. } //end if
  391. if (editable)
  392. {
  393. templateBuilder.Append(" <a id="e");
  394. templateBuilder.Append(comment.Commentid.ToString().Trim());
  395. templateBuilder.Append("" title="删除此评论" onclick="del_comment(");
  396. templateBuilder.Append(comment.Commentid.ToString().Trim());
  397. templateBuilder.Append(");" href="###" class="commenddelete">删除</a></em>rn");
  398. } //end if
  399. templateBuilder.Append(" </em>rn");
  400. templateBuilder.Append(" </div>rn");
  401. templateBuilder.Append(" </div>rn");
  402.  rowindex = rowindex+1;
  403. } //end loop
  404. if (commentable)
  405. {
  406. templateBuilder.Append(" <script type="text/javascript">rn");
  407. templateBuilder.Append(" function validate(form)rn");
  408. templateBuilder.Append(" {rn");
  409. templateBuilder.Append(" if (form.message.value == "")rn");
  410. templateBuilder.Append(" {rn");
  411. templateBuilder.Append(" alert("请输入评论内容");rn");
  412. templateBuilder.Append(" return false;rn");
  413. templateBuilder.Append(" }rn");
  414. templateBuilder.Append(" if(form.message.value.length > 2000) {rn");
  415. templateBuilder.Append(" alert("评论最多2000字");rn");
  416. templateBuilder.Append(" return false;rn");
  417. templateBuilder.Append(" }rn");
  418. templateBuilder.Append(" }rn");
  419. templateBuilder.Append(" </");
  420. templateBuilder.Append("script> rn");
  421. templateBuilder.Append(" <form method="post" id="postform" onsubmit="return validate(this);">rn");
  422. templateBuilder.Append(" <h3><a name="reply"></a>发表评论</h3>rn");
  423. templateBuilder.Append(" <p>rn");
  424. templateBuilder.Append(" <textarea id="message" tabindex="1" name="message" style="width: 400px;" onKeyDown="ctlent(event,false);" rows="8" class="colorblue"></textarea><br />rn");
  425. templateBuilder.Append(" </p>rn");
  426. templateBuilder.Append(" <p> rn");
  427. templateBuilder.Append(" <input tabindex="2" id="postsubmit" name="post_comment" class="lightbutton" value="提交" type="submit">[完成后可按 Ctrl+Enter 发布]rn");
  428. templateBuilder.Append(" <input tabindex="3" id="sendnotice" name="sendnotice" type="checkbox" rn");
  429. if (album.Userid==userid)
  430. {
  431. templateBuilder.Append("disabledrn");
  432. } //end if
  433. templateBuilder.Append(">发送评论通知rn");
  434. templateBuilder.Append(" </p> rn");
  435. templateBuilder.Append(" </form>rn");
  436. }
  437. else
  438. {
  439. templateBuilder.Append(" <div style="margin: 15px 0 15px 20px">rn");
  440. templateBuilder.Append(" <p>rn");
  441. templateBuilder.Append(" &nbsp;&nbsp;此图片禁止评论 或 登录用户才可评论rn");
  442. templateBuilder.Append(" </p>rn");
  443. templateBuilder.Append(" </div>rn");
  444. } //end if
  445. templateBuilder.Append(" </div>rn");
  446. templateBuilder.Append(" <div class="boxright">rn");
  447. templateBuilder.Append(" <h3>一周热图总排行</h3>rn");
  448. templateBuilder.Append(" <ul>rn");
  449. int weekhotphoto__loop__id=0;
  450. foreach(PhotoInfo weekhotphoto in weekhotphotolist)
  451. {
  452. weekhotphoto__loop__id++;
  453. if (weekhotphoto.Title!="")
  454. {
  455. templateBuilder.Append(" <li><a href="");
  456. templateBuilder.Append(albumurl.ToString());
  457. templateBuilder.Append("showphoto.aspx?photoid=");
  458. templateBuilder.Append(weekhotphoto.Photoid.ToString().Trim());
  459. templateBuilder.Append("">");
  460. templateBuilder.Append(weekhotphoto.Title.ToString().Trim());
  461. templateBuilder.Append("</a> (<a href="");
  462. templateBuilder.Append(albumurl.ToString());
  463. templateBuilder.Append("showalbumlist.aspx?uid=");
  464. templateBuilder.Append(weekhotphoto.Userid.ToString().Trim());
  465. templateBuilder.Append("">");
  466. templateBuilder.Append(weekhotphoto.Username.ToString().Trim());
  467. templateBuilder.Append("</a>)</li>rn");
  468. } //end if
  469. } //end loop
  470. templateBuilder.Append(" </ul>rn");
  471. templateBuilder.Append(" <h3 style="background:transparent ; padding-left: 0;">标签</h3>rn");
  472. templateBuilder.Append(" <ul id="tagcontainer">正在加载...</ul>rn");
  473. templateBuilder.Append(" <script type="text/javascript">showTags(");
  474. templateBuilder.Append(photoid.ToString());
  475. templateBuilder.Append(");</");
  476. templateBuilder.Append("script>rn");
  477. templateBuilder.Append(" </div>rn");
  478. templateBuilder.Append(" </div>rn");
  479. }
  480. else
  481. {
  482. templateBuilder.Append(" <div class="modulebox">rn");
  483. templateBuilder.Append(" <div class="forumtitle">rn");
  484. templateBuilder.Append(" <h2>此相册已被设置密码</h2>rn");
  485. templateBuilder.Append(" </div>rn");
  486. templateBuilder.Append(" <div class="forumpassword">rn");
  487. templateBuilder.Append(" <form id="enteralbum" name="enteralbum" method="post" action="">rn");
  488. 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");
  489. templateBuilder.Append(" <p><input type="submit"  value="确定" class="lightbutton"/></p>rn");
  490. templateBuilder.Append(" </form>rn");
  491. templateBuilder.Append(" </div>rn");
  492. templateBuilder.Append(" </div>rn");
  493. } //end if
  494. templateBuilder.Append(" </div>rn");
  495. } //end if
  496. }
  497. else
  498. {
  499. templateBuilder.Append("<div class="box message">rn");
  500. templateBuilder.Append(" <h1>出现了");
  501. templateBuilder.Append(page_err.ToString());
  502. templateBuilder.Append("个错误</h1>rn");
  503. templateBuilder.Append(" <p>");
  504. templateBuilder.Append(msgbox_text.ToString());
  505. templateBuilder.Append("</p>rn");
  506. templateBuilder.Append(" <p class="errorback">rn");
  507. templateBuilder.Append(" <script type="text/javascript">rn");
  508. templateBuilder.Append(" if(");
  509. templateBuilder.Append(msgbox_showbacklink.ToString());
  510. templateBuilder.Append(")rn");
  511. templateBuilder.Append(" {rn");
  512. templateBuilder.Append(" document.write("<a href=\"");
  513. templateBuilder.Append(msgbox_backlink.ToString());
  514. templateBuilder.Append("\">返回上一步</a> &nbsp; &nbsp;|&nbsp; &nbsp  ");rn");
  515. templateBuilder.Append(" }rn");
  516. templateBuilder.Append(" </");
  517. templateBuilder.Append("script>rn");
  518. templateBuilder.Append(" <a href="forumindex.aspx">论坛首页</a>rn");
  519. if (usergroupid==7)
  520. {
  521. templateBuilder.Append("  &nbsp; &nbsp|&nbsp; &nbsp; <a href="register.aspx">注册</a>rn");
  522. } //end if
  523. templateBuilder.Append(" </p>rn");
  524. templateBuilder.Append("</div>rn");
  525. } //end if
  526. templateBuilder.Append("</div>rn");
  527. if (footerad!="")
  528. {
  529. templateBuilder.Append("<!--底部广告显示-->rn");
  530. templateBuilder.Append("<div id="ad_footerbanner">");
  531. templateBuilder.Append(footerad.ToString());
  532. templateBuilder.Append("</div>rn");
  533. templateBuilder.Append("<!--底部广告结束-->rn");
  534. } //end if
  535. templateBuilder.Append("<div id="footer">rn");
  536. templateBuilder.Append(" <div class="wrap">rn");
  537. templateBuilder.Append(" <div id="footlinks">rn");
  538. templateBuilder.Append(" <p><a href="");
  539. templateBuilder.Append(config.Weburl.ToString().Trim());
  540. templateBuilder.Append("" target="_blank">");
  541. templateBuilder.Append(config.Webtitle.ToString().Trim());
  542. templateBuilder.Append("</a>&nbsp; ");
  543. templateBuilder.Append(config.Linktext.ToString().Trim());
  544. templateBuilder.Append("rn");
  545. if (config.Sitemapstatus==1)
  546. {
  547. templateBuilder.Append("&nbsp;<a href="");
  548. templateBuilder.Append(forumurl.ToString());
  549. templateBuilder.Append("tools/sitemap.aspx" target="_blank" title="百度论坛收录协议">Sitemap</a>rn");
  550. } //end if
  551. templateBuilder.Append(" ");
  552. templateBuilder.Append(config.Statcode.ToString().Trim());
  553. templateBuilder.Append("rn");
  554. templateBuilder.Append(" ");
  555. templateBuilder.Append(config.Icp.ToString().Trim());
  556. templateBuilder.Append("rn");
  557. templateBuilder.Append(" </p>rn");
  558. templateBuilder.Append(" <p>rn");
  559. templateBuilder.Append(" <a href="http://www.comsenz.com/" target="_blank">Comsenz Technology Ltd</a>rn");
  560. templateBuilder.Append(" - <a href="");
  561. templateBuilder.Append(forumurl.ToString());
  562. templateBuilder.Append("archiver/index.aspx" target="_blank">简洁版本</a>rn");
  563. templateBuilder.Append(" - <span class="scrolltop" onclick="window.scrollTo(0,0);">TOP</span>rn");
  564. if (config.Stylejump==1)
  565. {
  566. if (userid!=-1 || config.Guestcachepagetimeout<=0)
  567. {
  568. templateBuilder.Append(" - <span id="styleswitcher" class="dropmenu" onmouseover="showMenu(this.id)" onclick="window.location.href='");
  569. templateBuilder.Append(forumurl.ToString());
  570. templateBuilder.Append("showtemplate.aspx'">界面风格</span>rn");
  571. templateBuilder.Append(" <div id="styleswitcher_menu" class="popupmenu_popup" style="display: none;">rn");
  572. templateBuilder.Append(" <ul>rn");
  573. templateBuilder.Append(" ");
  574. templateBuilder.Append(templatelistboxoptions.ToString());
  575. templateBuilder.Append("rn");
  576. templateBuilder.Append(" </ul>rn");
  577. templateBuilder.Append(" </div>rn");
  578. } //end if
  579. } //end if
  580. templateBuilder.Append(" </p>rn");
  581. templateBuilder.Append(" </div>rn");
  582. templateBuilder.Append(" <a title="Powered by Discuz!NT" target="_blank" href="http://nt.discuz.net"><img border="0" alt="Discuz!NT" src="");
  583. templateBuilder.Append(forumurl.ToString());
  584. templateBuilder.Append("templates/");
  585. templateBuilder.Append(templatepath.ToString());
  586. templateBuilder.Append("/images/discuznt_logo.gif"/></a>rn");
  587. templateBuilder.Append(" <p id="copyright">rn");
  588. 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");
  589. if (config.Licensed==1)
  590. {
  591. 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");
  592. } //end if
  593. templateBuilder.Append(" ");
  594. templateBuilder.Append(config.Forumcopyright.ToString().Trim());
  595. templateBuilder.Append("rn");
  596. templateBuilder.Append(" </p>rn");
  597. templateBuilder.Append(" <p id="debuginfo">rn");
  598. if (config.Debug!=0)
  599. {
  600. templateBuilder.Append(" Processed in ");
  601. templateBuilder.Append(this.Processtime.ToString().Trim());
  602. templateBuilder.Append(" second(s)rn");
  603. if (isguestcachepage==1)
  604. {
  605. templateBuilder.Append(" (Cached).rn");
  606. }
  607. else if (querycount>1)
  608. {
  609. templateBuilder.Append("  , ");
  610. templateBuilder.Append(querycount.ToString());
  611. templateBuilder.Append(" queries.rn");
  612. }
  613. else
  614. {
  615. templateBuilder.Append("         , ");
  616. templateBuilder.Append(querycount.ToString());
  617. templateBuilder.Append(" query.rn");
  618. } //end if
  619. } //end if
  620. templateBuilder.Append(" </p>rn");
  621. templateBuilder.Append(" </div>rn");
  622. templateBuilder.Append("</div>rn");
  623. templateBuilder.Append("<ul class="popupmenu_popup" id="viewpro_menu" style="display: none">rn");
  624. if (useravatar!="")
  625. {
  626. templateBuilder.Append(" <img src="");
  627. templateBuilder.Append(useravatar.ToString());
  628. templateBuilder.Append(""/>rn");
  629. } //end if
  630.  aspxrewriteurl = this.UserInfoAspxRewrite(userid);
  631. templateBuilder.Append(" <li class="popuser"><a href="");
  632. templateBuilder.Append(forumurl.ToString());
  633. templateBuilder.Append(aspxrewriteurl.ToString());
  634. templateBuilder.Append("">我的资料</a></li>rn");
  635. if (config.Enablespace==1)
  636. {
  637. templateBuilder.Append("  <li class="poplink">rn");
  638. templateBuilder.Append(" <a href="");
  639. templateBuilder.Append(forumurl.ToString());
  640. templateBuilder.Append(spaceurl.ToString());
  641. templateBuilder.Append("space/">我的空间</a>rn");
  642. templateBuilder.Append(" </li>rn");
  643. } //end if
  644. templateBuilder.Append("</ul>rn");
  645. int prentid__loop__id=0;
  646. foreach(string prentid in mainnavigationhassub)
  647. {
  648. prentid__loop__id++;
  649. templateBuilder.Append("<ul class="popupmenu_popup headermenu_popup" id="menu_");
  650. templateBuilder.Append(prentid.ToString());
  651. templateBuilder.Append("_menu" style="display: none">rn");
  652. int subnav__loop__id=0;
  653. foreach(DataRow subnav in subnavigation.Rows)
  654. {
  655. subnav__loop__id++;
  656. bool isoutput = false;
  657. if (subnav["parentid"].ToString().Trim()==prentid)
  658. {
  659. if (subnav["level"].ToString().Trim()=="0")
  660. {
  661.  isoutput = true;
  662. }
  663. else
  664. {
  665. if (subnav["level"].ToString().Trim()=="1" && userid!=-1)
  666. {
  667.  isoutput = true;
  668. }
  669. else
  670. {
  671. bool leveluseradmindi = true;
  672.  leveluseradmindi = (useradminid==3 || useradminid==1 || useradminid==2);
  673. if (subnav["level"].ToString().Trim()=="2" &&  leveluseradmindi)
  674. {
  675.  isoutput = true;
  676. } //end if
  677. if (subnav["level"].ToString().Trim()=="3" && useradminid==1)
  678. {
  679.  isoutput = true;
  680. } //end if
  681. } //end if
  682. } //end if
  683. } //end if
  684. if (isoutput)
  685. {
  686. if (subnav["id"].ToString().Trim()=="11" || subnav["id"].ToString().Trim()=="12")
  687. {
  688. if (config.Statstatus==1)
  689. {
  690. templateBuilder.Append(" " + subnav["nav"].ToString().Trim() + "rn");
  691. continue;
  692. }
  693. else
  694. {
  695. continue;
  696. } //end if
  697. } //end if
  698. if (subnav["id"].ToString().Trim()=="18")
  699. {
  700. if (config.Oltimespan>0)
  701. {
  702. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  703. continue;
  704. }
  705. else
  706. {
  707. continue;
  708. } //end if
  709. } //end if
  710. if (subnav["id"].ToString().Trim()=="24")
  711. {
  712. if (config.Enablespace==1)
  713. {
  714. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  715. continue;
  716. }
  717. else
  718. {
  719. continue;
  720. } //end if
  721. } //end if
  722. if (subnav["id"].ToString().Trim()=="25")
  723. {
  724. if (config.Enablealbum==1)
  725. {
  726. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  727. continue;
  728. }
  729. else
  730. {
  731. continue;
  732. } //end if
  733. } //end if
  734. if (subnav["id"].ToString().Trim()=="26")
  735. {
  736. if (config.Enablemall>=1)
  737. {
  738. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  739. continue;
  740. }
  741. else
  742. {
  743. continue;
  744. } //end if
  745. } //end if
  746. templateBuilder.Append("    " + subnav["nav"].ToString().Trim() + "rn");
  747. } //end if
  748. } //end loop
  749. templateBuilder.Append("</ul>rn");
  750. } //end loop
  751. templateBuilder.Append("<div id="quicksearch_menu" class="searchmenu" style="display: none;">rn");
  752. 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");
  753. if (config.Enablespace==1)
  754. {
  755. 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");
  756. } //end if
  757. if (config.Enablealbum==1)
  758. {
  759. 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");
  760. } //end if
  761. 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");
  762. templateBuilder.Append("</div>rn");
  763. templateBuilder.Append("</div>rn");
  764. templateBuilder.Append("</body>rn");
  765. templateBuilder.Append("</html>rn");
  766. Response.Write(templateBuilder.ToString());
  767. }
  768. </script>