上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 82 下一页
摘要: /bin/sh (已经被 /bin/bash 所取代)/bin/bash (就是 Linux 预设的 shell)/bin/ksh (Kornshell 由 AT&T Bell lab. 发展出來的,相融于 bash)/bin/tcsh (整合 C Shell ,提供更多的功能)/bin/csh (已经被 /bin/tcsh 所取代)/bin/zsh (基于 ksh 发展出來的,功能更強大... 阅读全文
posted @ 2010-09-08 20:13 greencolor 阅读(201) 评论(0) 推荐(1) 编辑
摘要: wget http://www.python.org/ftp/python/3.1/Python-3.1.tgz 阅读全文
posted @ 2010-09-07 21:57 greencolor 阅读(108) 评论(0) 推荐(0) 编辑
摘要: python setup.py build;python setup.py test;python setup.py install; 阅读全文
posted @ 2010-09-04 08:53 greencolor 阅读(500) 评论(0) 推荐(0) 编辑
摘要: wget http://peak.telecommunity.com/dist/ez_setup.pypython ez_setup.py 阅读全文
posted @ 2010-09-01 16:37 greencolor 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 1、用字符串分隔: using System.Text.RegularExpressions;string str="aaajsbbbjsccc";string[] sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase);foreach (string i in sArray) Response.Write(i.ToString() + "<... 阅读全文
posted @ 2010-08-11 21:11 greencolor 阅读(120) 评论(0) 推荐(0) 编辑
摘要: string SiteID = null; DirectoryEntry root = new DirectoryEntry("IIS://localhost/W3SVC"); foreach (DirectoryEntry child in root.Children) { if (child.SchemaClassName == "IIsWebServer") { if (WebSiteNa... 阅读全文
posted @ 2010-08-05 00:31 greencolor 阅读(324) 评论(0) 推荐(0) 编辑
摘要: System.IO.File.Copy(string sourceFileName, string DestFileName);System.IO.File.Copy(string sourceFileName, string DestFileName, bool overwrite); 阅读全文
posted @ 2010-08-04 16:19 greencolor 阅读(246) 评论(0) 推荐(0) 编辑
摘要: <div> <asp:Button ID="CloseButton" runat="server" Text="Close" OnClientClick="javaScript:window.close(); return false;" /> </div>---------------------- protected void Button1_Click(... 阅读全文
posted @ 2010-08-04 11:48 greencolor 阅读(176) 评论(0) 推荐(0) 编辑
摘要: string strPath = Server.MapPath("");"E:\\Documents and Settings\\Administrator\\My Documents\\Visual Studio 2005\\WebSites\\WebSite10"string strPath = Request.ApplicationPath;"/WebSite10"string strPat... 阅读全文
posted @ 2010-08-02 21:40 greencolor 阅读(132) 评论(0) 推荐(0) 编辑
摘要: string aaa = System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion().ToString(); 阅读全文
posted @ 2010-07-31 20:25 greencolor 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 82 下一页