Ubuntu 12.10 安裝 JDK1.7.0_15

1. 開啟官網下載Java安裝檔案jdk-7u15-linux-x64.tar.gz 2.開啟終端,根據個人習慣建立目錄sudo mkdir /usr/local/development 3.將下載的檔案移動到這個檔案夾下面並進行解壓。使用如下命令:sudo mv jdk-7u15-linux-x64.tar.gz /usr/local/developmentsudo tar -zxvf jdk-7u15-linux-x64.tar.gz 4.修改環境變數sudo gedit

發布iis的配置

1.       Web發布到IIS為網站假設連接埠為20000。2.       配置HIMI類型:      .xaml application/xmal+xml      .xap

伺服器 按鈕 通過js驗證 再 觸發 提交 事件

[一籃飯特稀原創,轉載請註明出處http://www.cnblogs.com/wanghafan/archive/2012/05/10/2493864.html]js指令碼正則判空和數字驗證View Code 1 <script type="text/javascript"> 2 function CheckNullAndType() 3 { 4 var ErrorStr=''; 5

伺服器絕對路徑轉換成URL相對路徑

//本地路徑轉換成URL相對路徑View Code 1 private string urlconvertor(string imagesurl1)2 {3 string tmpRootDir = Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString());//擷取程式根目錄4 string imagesurl2 = imagesurl1.Replace(tmpRootDir, “”); //

JS文字框下拉提示效果

1 <script language="javascript"> 2 var intIndex=0;arrList = new Array(); 3 arrList[intIndex++] = "www.flyso.net"; 4 arrList[intIndex++] = "flyso@163.com"; 5 arrList[intIndex++] = "b22dsafsdf"; 6 arrList[intIndex++] = "c333asdfsadf"; 7

WindowsPhone第三方控制項ProgressOverlay的使用

在WIndowsPhone應用中有時候需要用到進行狀態條,我找到了一個第三方的控制項陳列庫,可以很方便的嚮應用中添加這個狀態條。 一、先決條件下載Coding4Fun Tools(地址:http://coding4fun.codeplex.com/releases/view/92875) 二、建立一個空的WindowsPhone項目 三、在引用中添加對 Coding4Fun.Phone.Controls.dll

簡易搖號器——學習WindowsPhone上的Timer

C#中有三種常用的Timer,分別是1.System.Windows.Forms.Timer2.System.Threading.Timer3.System.Timers.Timer而在WindowsPhone中,這三種Timer都是停用。遂Google了下,在WindowsPhone中有一個DispatcherTimer類(MSDN介紹:http://msdn.microsoft.com/zh-cn/library/system.windows.threading.dispatchertime

aspx與silverlight的傳參問題

ContactShow.aspx:View Code 1 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ContactShow.aspx.cs" Inherits="Strongsoft.FloodControl.Web.Contact.ContactShow" %> 2 <%@ Register Assembly="System.Web.Silverlight"

ComboBox+TreeView

[一籃飯特稀原創,轉載請註明出處http://www.cnblogs.com/wanghafan/archive/2012/05/10/2493799.html]銀光中ComboBox+TreeView構成自訂控制項: 思路1:textbox+button+treeview 缺點:不能跨ChildWindow、零散 [實現] 思路2:ComboBox+TreeView+textbox 優點:可以跨ChildWindow [實現]+[推薦] 思路3:ComboBox+TreeView

JS動態添加刪除表格行

1 <html> 2 <head></head> 3 ----------------執行個體1--------------- 4 <script language="javascript"> 5 function add() 6 { 7 var myTable =

MyEclipse10.6 & 9.1 各版本官方下載

 MyEclipse 2013myeclipse-pro-2013-offline-installer-windows.exemyeclipse-pro-2013-offline-installer-linux.runmyeclipse-blue-2013-offline-installer-windows.exe MyEclipse

修改web.config

讀取View Code 1 ConfigurationManager.AppSettings["isMail"] 修改View Code 1 public static void SetValue(string path, string KeyName, string AppValue) 2 { 3 XmlDocument xDoc = new XmlDocument(); 4 xDoc.Load(path); 5 XmlNode xNode; 6

產生高品質縮圖

調用:View Code 1 int width = 190;2 int height = 190;3 Bitmap source = new Bitmap("c:\\someimage.jpg");4 System.Drawing.Image thumb = source.GetThumbnailImage(width,height,null,IntPtr.Zero);5 thumb.Save("C:\\someimageshot.jpg");6

從 CCNA 到 CCIE

------------------------------CCNA-----------------------------------《CCNA學習指南》(中文第六版》

Regex擷取遠程網頁

[一籃飯特稀原創,轉載請註明出處http://www.cnblogs.com/wanghafan/archive/2012/02/09/2344276.html]--簡單例子: View Code 1 using System.Text;2 using System.Text.RegularExpressions;3 4 string str = "&lt;img&gt;123456789&lt;/img&gt;";5 string regexStr =

Google Maps API申請

[一籃飯特稀原創,轉載請註明出自http://www.cnblogs.com/wanghafan/archive/2012/08/03/2621698.html]1.cmd進入控制台2.進入C:\Users\Administrator\.android目錄3.運行keytool -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android4.記下密文,比如98:AD:7C:B9:

TreeView 中CheckBox級聯選中問題

1 private void Init() 2 { 3 TreeViewItem tvi_0 = new TreeViewItem(); 4 5 CheckBox cb = new CheckBox(); 6 cb.Content = "所有"; 7 cb.Checked += new RoutedEventHandler((sender, e) =>{foreach (TreeViewItem item in tvi_0.Items){

JS操作Frame對象

1 架構編程概述 2 一個HTML頁面可以有一個或多個子架構,這些子架構以<iframe>來標記,用來顯示一個獨立的HTML頁面。這裡所講的架構編程包括架構的自我控制以及架構之間的互相訪問,例如從一個架構中引用另一個架構中的JavaScript變數、調用其他架構內的函數、控制另一個架構中表單的行為等。 3 架構間的互相引用 4

Excel 操作(未完待續)

Excel匯入 資料庫View Code 1 private void GetExcelData07(string str) 2 { 3 try 4 { 5 strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='" + str + "';Extended Properties='Excel 8.0;HDR=Yes;IMEX=1'"; 6

HttpWebRequest 調用 WebService 返回 xml

WebService:View Code 1 [WebService(Namespace = "http://tempuri.org/")] 2 [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 3 public class WebService : System.Web.Services.WebService { 4 5 public WebService () { } 6 7

總頁數: 61357 1 .... 12183 12184 12185 12186 12187 .... 61357 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.