在看discuz nt 1.0。

2.0一直也不推出,前几天看了几篇讨论dnt 1.0的文章,信心倍减。

还是有一些地方看不太懂(没时间去懂?),今天看到一段AdminPage里的代码,有关显示AdminPage里的PageHeader的,看得心一下就凉了。。。

出在也没有办法换其它的论坛了,还有两三个小功能什么时候我能开发得出来啊 :(

觉得自己懂的太少了,效率又低,一直说的“多写代码”去还是写得太少。

在看discuz nt 1.0。          public   void  OutPutPageHeader( string  pagename,  string  adminname)
在看discuz nt 1.0。        
{
在看discuz nt 1.0。            
string opname = "";
在看discuz nt 1.0。            
string headerStr = "";
在看discuz nt 1.0。
在看discuz nt 1.0。            
根据当前页面名称显示相应的提示信息
在看discuz nt 1.0。
在看discuz nt 1.0。            headerStr 
= string.Format("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" >" +
在看discuz nt 1.0。                
"<tr bgcolor=\"#FFFFFF\">" +
在看discuz nt 1.0。                
"<td width=\"300\" height=\"42\" valign=\"bottom\" background=\"../images/fairy.png\">" +
在看discuz nt 1.0。                
"<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">" +
在看discuz nt 1.0。                
"<tr><td width=\"50\">&nbsp;</td>" +
在看discuz nt 1.0。                
"<td width=\"250\"><span style=\"color:#333333;font-size:14px;font-family:Tahoma,Verdana\">{0}</span></td>" +
在看discuz nt 1.0。                
"</tr><tr><td height=\"8\" colspan=\"2\"></td></tr>" +
在看discuz nt 1.0。                
"</table>" +
在看discuz nt 1.0。                
"</td>" +
在看discuz nt 1.0。                
"<td align=right>当前管理员:{1} &nbsp; <a href=\"http://nt.discuz.net/tools/help.aspx\">帮助</a> &nbsp; <a href=\"../logout.aspx\" target=\"_parent\">退出</a> &nbsp;&nbsp;</td>" +
在看discuz nt 1.0。
                "</tr>" +
在看discuz nt 1.0。                
"<tr>" +
在看discuz nt 1.0。                
"<td height=\"1\" colspan=\"2\" bgcolor=\"#999999\"></td>" +
在看discuz nt 1.0。                
"</tr>" +
在看discuz nt 1.0。                
"</table>",
在看discuz nt 1.0。                                      opname,
在看discuz nt 1.0。                                      
"<a href=../../usercp.aspx title=查看信息 target=_blank>" + adminname + "</a>");
在看discuz nt 1.0。
在看discuz nt 1.0。            
if (opname != "")
在看discuz nt 1.0。            
{
在看discuz nt 1.0。                
this.Page.RegisterClientScriptBlock("Form1", headerStr);
在看discuz nt 1.0。            }

在看discuz nt 1.0。        }

无语不说了。

你可能感兴趣的:(discuz)