悟生慧

 
上一页 1 2 3 4 5 6 7 8 ··· 27 下一页

2012年9月12日

使用Astah Community建UML类图之总结

摘要: 原文转载:http://www.doc88.com/p-584398261364.htmlUML用例图http://www.doc88.com/p-087655496346.html在类图中一共包含了以下几种模型元素,分别是:类(Class)、接口(Interface)、依赖(Dependency)关系、泛化(Generalization)关系、关联(Association)关系以及实现(Realization)关系。接口是在没有给出对象的实现和状态的情况下对对象行为的描述。接口是一种特殊的类,所有接口都是有构造型<<interface>>的类。在UML中,接口使用一个 阅读全文

posted @ 2012-09-12 19:03 悟生慧 阅读(25429) 评论(0) 推荐(0) 编辑

2012年8月28日

Asp.net MVC 使用json数据格式交互 示例

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Collections;namespace MvcApplicJson.Controllers{ [HandleError] public class HomeController : Controller { public ActionResult Index() { ViewData["Messa... 阅读全文

posted @ 2012-08-28 17:01 悟生慧 阅读(2870) 评论(0) 推荐(0) 编辑

JavaScript的prototype的属性和方法-使用

摘要: function Person(name, sex) { this.name = name; this.sex = sex;}Person.prototype = { getName: function () { return this.name; }, getSex: function () { return this.sex; }}Person.prototype.age = 25;var zhang = new Person("ZhangSan", "man");var chun = new Person("ChunHua".. 阅读全文

posted @ 2012-08-28 10:53 悟生慧 阅读(158) 评论(0) 推荐(0) 编辑

2012年8月24日

纯js实现的富有弹性的横向菜单 原文转载:http://www.sharejs.com/js/link/8614

摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文

posted @ 2012-08-24 11:11 悟生慧 阅读(287) 评论(0) 推荐(0) 编辑

一个纵向布局的CSS+JavaScript滑动门代码

摘要: <html xmlns="http://www.w3.org/1999/xhtml"><head><title>一个纵向布局的CSS+JavaScript滑动门代码 - www.6a8a.com</title><style>td,a,body{font-size:9pt;}/*--选中的情况下*/.DivAround_focus{cursor:pointer;background-color:#A1ACDB;border-right:solid 1px #A1ACDB;border-bottom:solid 1px 阅读全文

posted @ 2012-08-24 10:19 悟生慧 阅读(1139) 评论(0) 推荐(0) 编辑

JavaScript+CSS实现纵向滑动门菜单 ----初学者学习的好资料

摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb23 阅读全文

posted @ 2012-08-24 10:06 悟生慧 阅读(711) 评论(0) 推荐(0) 编辑

2012年8月23日

垂直Flyout JavaScript菜单。

摘要: 主页:http://www.leigeber.com/2008/05/vertical-flyout-javascript-menu/下载:http://www.leigeber.com/wp-content/uploads/2008/05/flyout.zip示例:http://sandbox.leigeber.com/flyout/flyout.html源码下载http://files.cnblogs.com/wuhuisheng/flyout.zip演示:http://www.poluoluo.com/example/jquery/4/index.html下载:http://down.p 阅读全文

posted @ 2012-08-23 15:48 悟生慧 阅读(165) 评论(0) 推荐(0) 编辑

C#3.5之网络编程 简单示例

摘要: 根据输入的主机地址获取主机IP地址 主机名和DNS主机名private void button1_Click(object sender, EventArgs e) { //判断是否输入了IP地址 if (textBox1.Text == string.Empty) { MessageBox.Show("请输入主机地址!");//aimajia2012.gotoftp2.com return; } else ... 阅读全文

posted @ 2012-08-23 11:47 悟生慧 阅读(717) 评论(0) 推荐(0) 编辑

2012年8月20日

鸡尾酒排序算法

摘要: static int[] intArray;//定义要排序的数组 #region 两个数互换位置 /// <summary> /// 两个数互换位置 /// </summary> /// <param name="left">第一个数</param> /// <param name="right">第二个数</param> static void Change(ref int left, ref int right) { int temp;//临时变量 temp = left;//记 阅读全文

posted @ 2012-08-20 12:15 悟生慧 阅读(894) 评论(0) 推荐(0) 编辑

C#字符串加密和解密

摘要: using System.Security.Cryptography;using System.IO;//默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; /// <summary> /// DES加密字符串 /// </summary> /// <param name="encryptString">待加密的字符串</param> /// <param name="encryptKey 阅读全文

posted @ 2012-08-20 10:57 悟生慧 阅读(11250) 评论(0) 推荐(2) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 27 下一页

导航