摘要: 最好的缺陷管理软件下载及破解Jira3.10 Enterprise Edition最好的缺陷管理软件下载及破解软件名称: JIRA Enterprise Edition 3.10 (2007-08-08截止最新版)语言:多国语言下载页面:http://www.atlassian.com/software/jira/JIRADownloadCenter.jspa软件30天试用版下载地址:[url]http://www.atlassian.com/software/Download.jspa?file=http://www.atlassian.com/software/jira/downloads 阅读全文
posted @ 2009-10-09 21:48 ljlxyf 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 用下面的破解方法我成功破解了3.13.5的谢谢互联网~jira起来后,访问http://ip:8080/时的初始化配置页面的最下面会要求输出授权码,破解方法如下:新建KeyGen.java,在buildpath里加依赖包atlassian-extras-1.17.jarimport com.atlassian.license.LicensePair; import java.io.*; import java.security.KeyFactory; import java.security.Signature; import java.security.spec.PKCS8EncodedKe 阅读全文
posted @ 2009-10-09 21:39 ljlxyf 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 作者:郭安定,祖籍江西,台湾人,OIIO Network 的创建者,微软最有价值专家(MVP)。投身在传播及信息领域超过15 年,并在国际金融投资领域有相当深厚的经验。 链接:http://blog.csdn.net/oiio/archive/2007/02/12/1508001.aspx 论坛里经常可以看到关于 35 岁程序员的生涯询问,他们之中有些人写了十年代码,有些人则是因为对编程发生了兴趣,中途转行,以下四点是给那些 30 - 35 岁程序员的建议: * 照顾自己健康以前,我认为“钱”是很重要的,俗话说的好:“钱不是万能,但没有钱万万不能”,所以过去我的焦点都是放在收入,但后来我发 阅读全文
posted @ 2009-09-28 15:44 ljlxyf 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 微软的 Access 中包含 Data Definition Language (DDL) 来建立删除表以及关系,当然了,这也可以用 DAO 来解决。 以下就是示例:用 DDL 的 Create Table 建立一个表 Table1 ,主键是自动编号字段,另一个字段是长度是 10 的文本字段。CREATE TABLE Table1 (Id COUNTER CONSTRAINT PrimaryKey PRIMARY KEY, MyText TEXT (10)) 再建一个包含两个字段的表 Table2,字段 id 为长整型,字段 MyText 为文本CREATE TABLE Table2 (Id 阅读全文
posted @ 2009-09-22 15:57 ljlxyf 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 数组查找对象的方法一种是查找对象,一种是查找值1. 查找对象Personp1=newPerson("http://www.my400800.cn",18);Personp2=newPerson("http://www.my400800.cn",19);Personp3=newPerson("http://www.my400800.cn",20);Person[]persons=...{p1,p2,p3};//查找p2所在数组中的位置Array.IndexOfPerson(persons,p2);2. 查找值Personp1=newPerson("http://www.my400800.cn 阅读全文
posted @ 2009-09-21 11:44 ljlxyf 阅读(1765) 评论(0) 推荐(0) 编辑
摘要: 代码下载地址:http://download.csdn.net/source/1669301SaveHtMLtoImageComm共通模块类定义GetImage.cs 类定义using System;using System.Collections.Generic;using System.Text;using System.Drawing;namespace SaveHtMLtoImageComm{ public class GetImage { private int S_Height; private int S_Width; private int F_Height; private 阅读全文
posted @ 2009-09-16 15:21 ljlxyf 阅读(1176) 评论(2) 推荐(0) 编辑
摘要: 最经需要开发一个winForm应用程序,里面用到了ComboBox 空间,首先遇到的问题是不知道如何绑定Text和Value到ComboBox 控件;其次是绑定到ComboBox控件上的内容居然可以修改,让人茫然;最后就是ComboBox选择的值不能够在代码中取得,郁闷啊。经过在网上资料的收集整理先将问题整理如下:1、ComboBox中同时绑定Text和Value 首先要定义一个简单数据存放的类,定义如下:public class MyItem { public MyItem(string Text, string Value) { this.Text = Text; this.Value = 阅读全文
posted @ 2009-09-14 15:56 ljlxyf 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: 一、要获取此ID,最简单的方法就是:(以下举一简单实用的例子) --创建数据库和表create database MyDataBaseuse MyDataBasecreate table mytable(id int identity(1,1),name varchar(20))--执行这个SQL,就能查出来刚插入记录对应的自增列的值insert into mytable values('李四')select @@identity二、三种方式的比较SQL Server 2000中,有三个比较类似的功能:他们分别是:SCOPE_IDENTITY、IDENT_CURRENT 和 @@IDENTIT 阅读全文
posted @ 2009-09-02 15:57 ljlxyf 阅读(287) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;using System.Web;using System.Web.Caching;namespace CropWeb.Library{ /// summary /// 缓存管理 /// /summary public class CacheHelper { private CacheHelper() { } // Based on 阅读全文
posted @ 2009-08-28 17:03 ljlxyf 阅读(504) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Text;using fjt.DBUtility;/// summary/// 分页用sql查询类 http://w 阅读全文
posted @ 2009-08-28 10:03 ljlxyf 阅读(218) 评论(0) 推荐(0) 编辑