Azure Lei Zhang的博客

weibo: LeiZhang的微博/QQ: 185165016/QQ群:319036205/邮箱:leizhang1984@outlook.com/TeL:139-161-22926

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2012年1月16日

摘要: 《Windows Azure Platform 系列文章目录》最近的一年一直致力于微软云计算技术的推广和研究,对于微软的云计算平台Windows Azure Platform有一定的了解和认识。趁着过年这段时间的间隙,写下这个Windows Azure Platform系列文章,分享下我个人的经验:一.什么是云计算平台百度百科对于云计算的定义(http://baike.baidu.com/view/1316082.htm)云计算(Cloud Computing)是网格计算(Grid Computing )、分布式计算(DistributedComputing)、并行计算(Parallel Co 阅读全文
posted @ 2012-01-16 18:41 Lei Zhang的博客 阅读(3000) 评论(11) 推荐(4)

2012年1月6日

摘要: 本博-三石Blog(下文简称本博),在本博客文章结尾处右下脚未注明转载、来源、出处的作品(内容)均为本博原创,本站对于原创作品内容对其保留版权,请勿随意转载,如若真有需要的朋友可以发Mail联系我;转载本博原创作品(内容)也必须遵循“署名-非商业用途-保持一致”的创作共用协议,请务必以文字链接的形式 阅读全文
posted @ 2012-01-06 19:27 Lei Zhang的博客 阅读(31951) 评论(15) 推荐(19)

2010年10月18日

摘要: http://www.blogjava.net/gf7/archive/2007/03/13/103556.htmlc:\sqlplus /nologSQL>conn / as sysdbaSQL> show parameter processes;NAME TYPE VALUE------------------------------------ ----------- -----... 阅读全文
posted @ 2010-10-18 11:38 Lei Zhang的博客 阅读(1440) 评论(0) 推荐(0)

2010年10月8日

摘要: 平时用的的确确是少,回来想起来已经忘记了不下3次了,搞得每次都要去网上现找,索性写到博客中作为记录。基本理论: 控件的背景色往往是从父控件继承来的。比如在PictureBox 上面放置一个背景透明的Label,做法可如下: label1.Parent = pictureBox1; //设定Label 的父控件为PictureBox label1.BackColor = Color.Transpar... 阅读全文
posted @ 2010-10-08 16:25 Lei Zhang的博客 阅读(455) 评论(0) 推荐(0)

2010年9月2日

摘要: public String Multiply(string num1, string num2) { int num1Length = num1.Length; int num2Length = num2.Length; //tranfor the string to int array int[] inum1 = new int[num1Length]; //先将字符串转化为整数数组(每个数字... 阅读全文
posted @ 2010-09-02 21:19 Lei Zhang的博客 阅读(382) 评论(0) 推荐(0)

2010年8月31日

摘要: ////////////////////////aspx<asp:GridView ID="gvData" runat="server" Style="border: 0px; cursor: hand;" AutoGenerateColumns="False" ShowHeader="True" Width="710" onclick="javascript:GoSel(event);" ... 阅读全文
posted @ 2010-08-31 11:48 Lei Zhang的博客 阅读(798) 评论(0) 推荐(0)

2010年8月30日

摘要: ===========================aspx<asp:GridView runat="server" ID="grvMobile" AutoGenerateColumns="False" Width="100%" OnRowCancelingEdit="grvMobile_RowCancelingEdit" OnRowDeleting="grvMobile_RowDelet... 阅读全文
posted @ 2010-08-30 17:47 Lei Zhang的博客 阅读(1134) 评论(0) 推荐(0)

2010年8月19日

摘要: /// <summary> /// 判断2个几何图形是否相交 /// </summary> /// <param name="oneGeometry"></param> /// <param name="otherGeometry"></param> /// <returns></returns> pu... 阅读全文
posted @ 2010-08-19 10:10 Lei Zhang的博客 阅读(2035) 评论(0) 推荐(0)

2010年8月13日

摘要: private void downLoad(string id) { string fileName = Page.Request.PhysicalApplicationPath + "SystemManage\\SysFile\\" + DateTime.Now.ToString("yyyyMMddhhmmss") + ".zip"; OracleConnection conn = null; ... 阅读全文
posted @ 2010-08-13 14:19 Lei Zhang的博客 阅读(733) 评论(0) 推荐(0)

2010年8月11日

摘要: //////////////////////////////////////////oracle部分存储过程create or replace package PACK_PAGE isTYPE type_cur IS REF CURSOR; --定义游标变量用于返回记录集 PROCEDURE PROC_PAGE ( Pindex in number, --分页索引 Psql in varchar2... 阅读全文
posted @ 2010-08-11 15:51 Lei Zhang的博客 阅读(2017) 评论(0) 推荐(0)