
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
	<head><meta forua="true" http-equiv="Cache-Control" content="max-age=0" /></head><card id="MainCard" title="&#x6B22;&#x8FCE;&#x5149;&#x4E34;"><p><a href="wap.asp">&#x6728;&#x5B50;&#x5C4B;</a><br/>&nbsp;</p><p><b>&#x6807;&#x9898;&#x3A;</b> &#x46;&#x69;&#x6C;&#x65;&#x53;&#x79;&#x73;&#x74;&#x65;&#x6D;&#x4F;&#x62;&#x6A;&#x65;&#x63;&#x74;&#x7EC4;&#x4EF6;&#x5B9E;&#x4F8B;&#x6559;&#x7A0B;</p><p><b>&#x4F5C;&#x8005;&#x3A;</b> &#x64;&#x6E;&#x61;&#x77;&#x6F;</p><p><b>&#x65E5;&#x671F;&#x3A;</b> &#x32;&#x30;&#x30;&#x37;&#x2D;&#x30;&#x34;&#x2D;&#x30;&#x32;&#x20;&#x30;&#x38;&#x3A;&#x34;&#x37;&#x20;&#x41;&#x4D;</p><p><b>&#x5206;&#x7C7B;&#x3A;</b> <a href="wap.asp?do=showLog&amp;cateID=5">&#x57;&#x65;&#x62;&#x7F16;&#x7A0B;</a></p><p><b>&#x5185;&#x5BB9;&#x3A;</b> &#x672C;&#x4F8B;&#x4E3B;&#x8981;&#x8BB2;&#x8FF0;&#x5982;&#x4F55;&#x5E94;&#x7528;FileSystemObject&#x7EC4;&#x4EF6;&#x65B0;&#x5EFA;&#x3001;&#x590D;&#x5236;&#x548C;&#x79FB;&#x52A8;&#x6587;&#x4EF6;&#x53CA;&#x6587;&#x4EF6;&#x5939;&#x3001;&#x8BFB;&#x5199;&#x6587;&#x672C;&#x6587;&#x4EF6;&#x3001;&#x521B;&#x5EFA;&#x6587;&#x4EF6;&#x548C;&#x6587;&#x4EF6;&#x5939;&#x5BF9;&#x8C61;&#x5E76;&#x8FD4;&#x56DE;&#x5B83;&#x4EEC;&#x7684;&#x4E00;&#x4E9B;&#x5C5E;&#x6027;&#x3001;&#x663E;&#x793A;&#x9A71;&#x52A8;&#x5668;&#x5217;&#x8868;&#x7B49;&#x7B49;&#xFF0C;&#x4EE3;&#x7801;&#x5982;&#x4E0B;&#xFF1A;<br/>&#x590D;&#x5236;&#x5185;&#x5BB9;&#x5230;&#x526A;&#x8D34;&#x677F; &#x7A0B;&#x5E8F;&#x4EE3;&#x7801;&lt;%<br/>Option Explicit<br/>&#39;On error resume next<br/>Dim objFSO,drive<br/>Set objFSO = Server.Cr&#101;ateObject(&#34;Scripting.FileSystemObject&#34;)<br/>Dim strPath,strFolder1,strFolder2,strFile1,strFile2,strFile3,strFile4<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x8BBE;&#x5B9A;&#x8DEF;&#x5F84;<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>strPath = Server.MapPath(&#34;.&#34;)<br/>strFolder1 = strPath &amp; &#34;\01&#34;<br/>strFolder2 = strPath &amp; &#34;\02&#34;<br/>strFile1 = strFolder1 &amp; &#34;\a.txt&#34;<br/>strFile2 = strFolder1 &amp; &#34;\b.txt&#34;<br/>strFile3 = strFolder2 &amp; &#34;\a.txt&#34;<br/>strFile4 = strFolder2 &amp; &#34;\b.txt&#34;<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x521B;&#x5EFA;&#x6587;&#x4EF6;&#x6587;&#x4EF6;&#x5939;<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;Cr&#101;ateFolder(folderpath)<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;Cr&#101;ateTextFile(filepath[,overwrite]<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; overwrite:true&#x5141;&#x8BB8;&#x8986;&#x76D6;;@false&#x4E0D;&#x5141;&#x8BB8;&#x8986;&#x76D6;<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>objFSO.Cr&#101;ateFolder(strFolder1)<br/>objFSO.Cr&#101;ateFolder(strFolder2)<br/>objFSO.Cr&#101;ateTextFile(strFile1)<br/>objFSO.Cr&#101;ateTextFile(strFile2)<br/>objFSO.Cr&#101;ateTextFile(strFile3)<br/>objFSO.Cr&#101;ateTextFile(strFile4)<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x5BF9;&#x6587;&#x672C;&#x6587;&#x4EF6;&#x8FDB;&#x884C;&#x8BFB;&#x5199;&#x64CD;&#x4F5C;<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;OpenTextFile(filepath[,Iomode[,cr&#101;ate]])<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Iomode:@1&#x53EA;&#x8BFB;;2&#x53EF;&#x5199;&#x8986;&#x76D6;&#x6240;&#x6709;&#x5185;&#x5BB9;;8&#x53EA;&#x5199;<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cr&#101;ate:true&#x81EA;&#x884C;&#x5EFA;&#x7ACB;;@false&#x4E0D;&#x81EA;&#x884C;&#x5EFA;&#x7ACB;<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>Dim objTS<br/>Set objTS = objFSO.OpenTextFile(strFile1,8)<br/>objTS.WriteLine(&#34;&#x4F60;&#x597D;&#xFF01;&#34;)<br/>objTS.WriteLine(&#34;&#x6700;&#x540E;&#x66F4;&#x65B0;&#34; &amp; now())<br/>objTS.close<br/>Set objTS = nothing<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x8FDB;&#x884C;&#x4E00;&#x4E9B;&#x590D;&#x5236;&#x3001;&#x79FB;&#x52A8;&#x3001;&#x5220;&#x9664;&#x64CD;&#x4F5C;<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;CopyFolder oldfolderpath,newfolderpath[,overwrite]<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;CopyFile oldfilepath,newfilepath[,overwrite]<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;MoveFolder oldfolderpath,newfolderpath<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;MoveFile oldfilepath,newfilepath<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;Del&#101;teFolder folderpath<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;Del&#101;teFile filepath<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>objFSO.CopyFolder strFolder2,strPath &amp; &#34;\03&#34;<br/>objFSO.CopyFile strFile3,strPath &amp; &#34;\03&#34; &amp; &#34;\c.txt&#34;<br/>objFSO.MoveFolder strPath &amp; &#34;\03&#34;,strFolder1 &amp; &#34;\03&#34;<br/>objFSO.MoveFile strFile4,strFolder1 &amp; &#34;\03&#34; &amp; &#34;\d.txt&#34;<br/>objFSO.Del&#101;teFile strFile3<br/>objFSO.Del&#101;teFolder strFolder2<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x5224;&#x65AD;&#x6587;&#x4EF6;&#x6587;&#x4EF6;&#x5939;&#x662F;&#x5426;&#x5B58;&#x5728;&#x5E76;&#x8FD4;&#x56DE;&#x4FE1;&#x606F;<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;FileExists(filepath)<br/>&#39;&nbsp;&nbsp;&nbsp;&nbsp; &#x251C;FolderExists(folderpath)<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>Dim objFolder,objFile,strFolder,strFile<br/>If objFSO.FileExists(strFile1) then<br/>&#160;&#160;&#160;&#160;Set objFile = objFSO.GetFile(strFile1)<br/>&#160;&#160;&#160;&#160;Response.write objFile.Name &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x5C5E;&#x6027;:&#34; &amp; objFile.Attributes &amp; &#34;&lt;br&gt;&#34; &#39;0&#x666E;&#x901A;;1&#x53EA;&#x8BFB;;2&#x9690;&#x85CF;;4&#x7CFB;&#x7EDF;;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x521B;&#x5EFA;&#x65E5;&#x671F;:&#34; &amp; objFile.DateCr&#101;ated &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x8BBF;&#x95EE;&#x65E5;&#x671F;:&#34; &amp; objFile.DateLastAccessed &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x6700;&#x540E;&#x4FEE;&#x6539;:&#34; &amp; objFile.DateLastModified &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x6587;&#x4EF6;&#x8DEF;&#x5F84;:&#34; &amp; objFile.Path &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x6587;&#x4EF6;&#x5927;&#x5C0F;:&#34; &amp; objFile.Size &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x7236;&#x6587;&#x4EF6;&#x5939;:&#34; &amp; objFile.ParentFolder &amp; &#34;&lt;br&gt;&#34;&nbsp;&nbsp;&#39;&#x53EF;&#x8FD4;&#x56DE;&#x4E00;&#x4E2A;Folder&#x5BF9;&#x8C61;<br/>&#160;&#160;&#160;&#160;Set objFile = nothing<br/>End if<br/>If objFSO.FolderExists(strFolder1) then<br/>&#160;&#160;&#160;&#160;Set objFolder = objFSO.GetFolder(strFolder1)<br/>&#160;&#160;&#160;&#160;Response.write objFolder.Name &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x5C5E;&#x6027;:&#34; &amp; objFolder.Attributes &amp; &#34;&lt;br&gt;&#34; &#39;0&#x666E;&#x901A;;1&#x53EA;&#x8BFB;;2&#x9690;&#x85CF;;4&#x7CFB;&#x7EDF;;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x521B;&#x5EFA;&#x65E5;&#x671F;:&#34; &amp; objFolder.DateCr&#101;ated &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x8BBF;&#x95EE;&#x65E5;&#x671F;:&#34; &amp; objFolder.DateLastAccessed &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x6700;&#x540E;&#x4FEE;&#x6539;:&#34; &amp; objFolder.DateLastModified &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x8DEF;&#x5F84;:&#34; &amp; objFolder.Path &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x5927;&#x5C0F;:&#34; &amp; objFolder.Size &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x7236;&#x6587;&#x4EF6;&#x5939;:&#34; &amp; objFolder.ParentFolder &amp; &#34;&lt;br&gt;&#34;&nbsp;&nbsp;&#39;&#x53EF;&#x8FD4;&#x56DE;&#x4E00;&#x4E2A;Folder&#x5BF9;&#x8C61;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x6240;&#x5728;&#x5206;&#x533A;:&#34; &amp; objFolder.Drive &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x6839;&#x6587;&#x4EF6;&#x5939;:&#34; &amp; objFolder.IsRootFolder &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;&#39;Response.write &#34;&#x5B50; &#x6587; &#x4EF6;:&#34; &amp; objFolder.Files &amp; &#34;&lt;br&gt;&#34;&nbsp;&nbsp;&#39;&#x53EF;&#x8FD4;&#x56DE;&#x4E00;&#x4E2A;File&#x5BF9;&#x8C61;<br/>&#160;&#160;&#160;&#160;&#39;Response.write &#34;&#x5B50; &#x6587; &#x4EF6;:&#34; &amp; objFolder.SubFolders &amp; &#34;&lt;br&gt;&#34;&nbsp;&nbsp;&#39;&#x53EF;&#x8FD4;&#x56DE;&#x4E00;&#x4E2A;Folder&#x5BF9;&#x8C61;<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x5B50;&#x6587;&#x4EF6;&#x5939;:&#34; &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;For each strFolder in objFolder.SubFolders<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Response.write strFolder.Name &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Next<br/>&#160;&#160;&#160;&#160;Response.write &#34;&#x5B50;&#x6587;&#x4EF6;:&#34; &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;For each strFile in objFolder.Files<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Response.write strFile.Name &amp; &#34;&lt;br&gt;&#34;<br/>&#160;&#160;&#160;&#160;Next<br/>&#160;&#160;&#160;&#160;Set objFolder = nothing<br/>End if<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x9A71;&#x52A8;&#x5668;&#x5217;&#x8868;<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;For each drive in objFSO.drives<br/>&#39;&#160;&#160;&#160;&#160;Response.write drive.driveLetter &amp; &#34;&lt;br&gt;&#34;<br/>&#39;&#160;&#160;&#160;&#160;Response.write drive.drivetype &amp; &#34;&lt;br&gt;&#34;<br/>&#39;&#160;&#160;&#160;&#160;Response.write drive.VolumeName &amp; &#34;&lt;br&gt;&#34;<br/>&#39;&#160;&#160;&#160;&#160;Response.write drive.TotalSize &amp; &#34;&lt;br&gt;&#34;<br/>&#39;&#160;&#160;&#160;&#160;Response.write drive.Availablespace &amp; &#34;&lt;br&gt;&#34;<br/>&#39;&#160;&#160;&#160;&#160;Response.write drive.FileSystem &amp; &#34;&lt;br&gt;&#34;<br/>&#39;Next<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;&#160;&#160;&#160;&#160;&#x4E3E;&#x4F8B;&#xFF1A;&#x8FD4;&#x56DE;&#x6839;&#x76EE;&#x5F55;&#x6587;&#x4EF6;&#x5939;<br/>&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;&#39;<br/>&#39;Response.write &#34;E&#x76D8;&#x6839;&#x76EE;&#x5F55;&#x6587;&#x4EF6;&#x5939;:&#34; &amp; &#34;&lt;br&gt;&#34;<br/>&#39;Set objFolder = objFSO.GetFolder(&#34;E:\&#34;)<br/>&#39;For each strFolder in objFolder.SubFolders<br/>&#39;&#160;&#160;&#160;&#160;Response.write strFolder.Name &amp; &#34;&lt;br&gt;&#34;<br/>&#39;Next<br/>&#39;Set objFolder = nothing<br/>Set objFSO = nothing<br/>%&gt;</p><p> + <a href="#CommentCard">&#x67E5;&#x770B;&#x5F53;&#x524D;&#x65E5;&#x5FD7;&#x8BC4;&#x8BBA;</a> (1)</p><p>&nbsp;<br/><br/><a href="wap.asp?do=Login">&#x767B;&#x5F55;</a></p><p><br/>&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;</p><p><a href="wap.asp">&#x6728;&#x5B50;&#x5C4B;</a></p><p><a href="http://www.pjhome.net/wap.asp">PJBlog3&nbsp;v3.2.9.518</a>&nbsp;Inside.</p><p>Processed&nbsp;In&nbsp;0.047&nbsp;ms</p><do type="prev" label="&#x8FD4;&#x56DE;"><prev/></do></card><card id="postCommentCard"><p><b>&#x6807;&#x9898;&#x3A;</b> <a href="#MainCard">&#x46;&#x69;&#x6C;&#x65;&#x53;&#x79;&#x73;&#x74;&#x65;&#x6D;&#x4F;&#x62;&#x6A;&#x65;&#x63;&#x74;&#x7EC4;&#x4EF6;&#x5B9E;&#x4F8B;&#x6559;&#x7A0B;</a></p><p><br/>你没有权限发表评论</p><p><br/>&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;</p><p><a href="wap.asp">&#x6728;&#x5B50;&#x5C4B;</a></p><p><a href="http://www.pjhome.net/wap.asp">PJBlog3&nbsp;v3.2.9.518</a>&nbsp;Inside.</p><p>Processed&nbsp;In&nbsp;0.047&nbsp;ms</p><do type="prev" label="&#x8FD4;&#x56DE;"><prev/></do></card><card id="CommentCard"><p>&#x6682;&#x65E0;&#x8BC4;&#x8BBA;</p><p><a href="#MainCard">&#x8FD4;&#x56DE;</a></p><p><br/>&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;&#x2500;</p><p><a href="wap.asp">&#x6728;&#x5B50;&#x5C4B;</a></p><p><a href="http://www.pjhome.net/wap.asp">PJBlog3&nbsp;v3.2.9.518</a>&nbsp;Inside.</p><p>Processed&nbsp;In&nbsp;0.047&nbsp;ms</p><do type="prev" label="&#x8FD4;&#x56DE;"><prev/></do></card>
</wml>
