自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

启程

世事于我,宛如花开,我路过繁盛的花开,很多人,路过我......

  • 博客(49)
  • 资源 (11)
  • 收藏
  • 关注

翻译 Ajax向服务器发送请求

Ajax get方式向服务器发送请求: //创建XMLHttpReques对象 function createXMLHttpRequest(){ if(window.XMLHttpRequest){ //Mozilla浏览器 XMLHttpRe

2013-08-02 19:24:57 1915

转载 三星的营销之道

营销之道在三星大中华区首席市场官晏昆看来,不管是哪个行业,营销的核心思路和价值都一样,就是找准目标消费者,然后深刻的理解他,再定义企业的品牌。所以营销的核心是一样的,就是以消费者为中心,知道他是谁,能够给他什么,怎样去给,如何告诉他这些信息。三星出色的市场业绩离不开其准确的营销战略和巨额市场投入,但是这并不足以解释三星营销的成功,事实上,晏昆也承认,三星在营销上的一个重要的成功经验

2013-08-01 10:21:49 823

原创 struts2 HelloWorld

Struts 2历史 最早出现的Struts1是一个非常著名的框架,它实现了MVC模式。Struts1简单小巧,其中最成熟的版本是Struts1.2。 乊后出现了WebWork框架,其实现技术比Struts1先进,但影响力丌如Struts1。 在框架技术不断发展过程中,有人在WebWork核心XWork的基础上包装了Struts1(算是两种框架的整合),由此,结合了Struts1的影响力和We

2013-07-31 16:52:17 2634

原创 Oracle函数与存储过程

函数:     函数必须有返回值,可以有参数创建函数:create or replace function get_hello_msgreturn varchar2 asbegin     return 'hello';end get_hello_msg;在数据字典中查看函数的信息:select object_name,object_type,s

2013-06-20 10:44:04 550

原创 Oracle数据库视图

Oracle中有四种视图:关系视图内嵌视图对象视图物化视图需要的表和数据信息:create table employees(employee_id number primary key , first_name varchar2(4), last_name varchar2(4), province varchar2(10),city varchar2(10

2013-06-20 10:41:04 957

转载 努力成为优秀的工程师

面对问题,解决问题西方有句谚语:“当手中拿着榔头的时候,你会觉得看到的东西都像是钉子”。根据自己的喜好、特长、习惯来解决问题是工程师的大忌。做工程时最重要的是要面对问题、解决问题。可取的策略应该是探明问题的本质,弄清问题的机理,用最直接、最有效的办法解决问题。经验告诉我们,拐弯抹角地解决问题,效果总是不好的。做工程时并不一定需要理论。只要能够有效地解决问题,其实什么方法都行。“不管白猫黑猫

2013-05-26 22:39:53 513

转载 request.getHeader("referer")的作用

在开发web程序的时候,有时我们需要得到用户是从什么页面连过来的,这就用到了referer。它是http协议,所以任何能开发web程序的语言都可以实现,比如jsp中是:request.getHeader("referer");php是$_SERVER['HTTP_REFERER']。其他的我就不举例了(其实是不会其他的语言)。js的话就是这样做:javascript:documen

2013-01-10 16:13:01 535

原创 关于教育的摘录

“上学有时不一定是为了学习课本上的知识,也是为了能够跟同龄人在一起,学会沟通和交流。”——卡apple(壁橱社区)“因材施教当然能让孩子开心,不过北大毕业才敢在家自己教,家长们恐怕也不敢冒这个险,没那两把刷子的话还是老老实实的寒窗十年吧。”——木瓜(壁橱社区)今天的青年人,对成功的定义正逐渐变得宽泛与多元化,尊重个性与爱好、坚持理想、享受过程和丰富的体验,成为他们新的人生价值目标。

2013-01-10 09:44:36 629

原创 div中的文字居中代码

<!--#center {text-align:center; vertical-align:middle; height:200px; line-height:200px; width:400px; border:#000000 dotted 1px}-->  居中 #center{ text-align:center;

2012-12-26 16:22:31 8649 2

原创 JS写的计时器,把代码贴上,可以参考

js代码: var maxtime = 7;function CountDown(){ var tokenid = document.getElementById("tokenid"); if(maxtime>=0){ minutes = Math.floor(maxtime/60); seconds = Math.floor(maxtime%60); msg="剩

2012-12-19 19:13:38 5339

原创 表格的display问题

表格的tr用display ="inline" 或 display=“block”时候,在IE浏览器中正常,但是在FF和Chrome中不正常,解决办法是用display=“”,这样就能兼容IE和FF和Chrome了。

2012-12-18 18:48:06 954

原创 对Servlet的理解

1、servlet是一个组件,符合一定的规范,需要在容器中才能运行,这个容器可能是Tomcat或者是其他的服务器。2、开发一个servlet的步骤:(1)、写一个java类HelloServlet,继承HttpServlet类,在类里面重写service方法,两个参数:(HttpServletRequest request,HttpServletResponse response),抛

2012-12-03 14:20:30 716

转载 IT人士不能一辈子靠技术生存

我现在是自己做,但我此前有多年在从事软件开发工作,当回过头来想一想自己,觉得特别想对那些初学JAVA/DOT.NET技术的朋友说点心里话,希望你们能从我们的体会中,多少受点启发(也许我说的不好,你不赞同但看在我真心的份上别扔砖头啊)。 一、在中国你千万不要因为学习技术就可以换来稳定的生活和高的薪水待遇,你千万更不要认为哪些从事 市场开发,跑腿的人,没有前途。 不知道

2012-09-11 00:26:56 1460

转载 提升自我的14条法则

在成长生活中,我一直在寻找能够提升自我的方法途径。我已经找到了14个最好的技巧可以帮助你更好的提升自我。其中有一些简单方法步骤你可以立即开始去做,还有一些更大的计划你需要更多的努力去完成。 1.每天读书。书是智慧的源泉。你读的书越多,你就会变得更加有智慧。都有什么书可以让你提高自己呢?博华看过的《建立你的时间资本》、《要事第一》、《世界上最伟大的推销员》等等都是很好的书,可

2012-09-06 16:16:35 1399

原创 傲不可长,乐不可极,欲不可纵,志不可满

傲不可长,乐不可极,欲不可纵,志不可满.

2012-09-06 16:11:52 695

原创 基本SQL语句

假设已经有一个数据表:test_comment:有字段:id number(10),name varchar2(30),pwd varchar2(30);下面:1,为创建的数据表添加注释:为表和字段添加注释的语句则是:为表:comment on table 表名字 is '注释名字';如:comment on table test_comment is '添

2012-09-03 17:44:18 633

原创 遍历Hashtable中的key和value的几种方法

package coreJava;import java.util.Enumeration;import java.util.Hashtable;import java.util.Iterator;/* * 处理原则:先取出key,再利用key获取value */public class HashtableDemo { public static void main(String

2012-08-22 16:07:33 14971 1

原创 加载图片工具类

*加载图片是一件很浪费资源的问题,并且图片的重复利用率很大, *所以,将首次加载了的图片放入Hashtable中,以后用到时直接找出, *如果Hashtable中没有,再加载并放入Hashtable中,这样提高了效率.import java.util.Hashtable;import org.eclipse.swt.graphics.Image;import org.ec

2012-08-22 15:05:56 563

原创 设计模式之-代理模式

代理模式:代理模式给某一个对象提供一个代理对象,并由代理对象控制对源对象的引用。代理就是一个人或一个机构代表另一个人或者一个机构采取行动。某些情况下,客户不想或者不能够直接引用一个对象,代理对象可以在客户和目标对象直接起到中介的作用。客户端分辨不出代理主题对象与真实主题对象。代理模式可以并不知道真正的被代理对象,而仅仅持有一个被代理对象的接口,这时候代理对象不能够创建被代理对象,被代理对象必须有系

2012-08-17 14:53:51 460

原创 设计模式之-策略模式

在网上摘抄了一些比较经典的案例:下面做个总结:  策略模式:策略模式针对一组算法,将每一个算法封装到具有共同接口的独立的类中,从而使得它们可以相互替换。策略模式使得算法可以在不影响到客户端的情况下发生变化。策略模式把行为和环境分开。环境类负责维持和查询行为类,各种算法在具体的策略类中提供。由于算法和环境独立开来,算法的增减,修改都不会影响到环境和客户端。 如: 跟不同类

2012-08-17 14:33:27 777 1

原创 StringUtils

1.判断字符串是否为空: public static boolean isEmpty(String string) { return string == null || "".equals(string.trim()); }

2012-08-10 16:02:04 483

原创 SWT中树的监听器举例

import org.eclipse.swt.SWT;import org.eclipse.swt.custom.SashForm;import org.eclipse.swt.graphics.Point;import org.eclipse.swt.layout.FillLayout;import org.eclipse.swt.widgets.Composite;import or

2012-08-08 18:32:00 2351

原创 Java中的时间处理

时间的格式有三种:String:2012-07-31Date:Tue Jul 31 22:07:48 CST 2012Long:1343743668375时间的本质:Date=long+操作;                  Calendar=long+操作;日期的输入与输出:     日期输出的本质:将Date装换为格式化了的String 如将Tue Jul 31

2012-07-31 22:34:17 603

原创 SWT中按钮的监听器

按钮的监听器的写法:import org.eclipse.jface.dialogs.IInputValidator;import org.eclipse.jface.dialogs.InputDialog;import org.eclipse.jface.dialogs.MessageDialog;import org.eclipse.jface.window.Window;impo

2012-07-30 17:40:22 3809

原创 摘录3

关于创新创新是企业得以“进化”的动力,也最容易被忽视甚至遭到冷遇。很多成熟的企业虽然仍然在喊着创新的口号,也不断用PR手段将自己包装得非常创新,但实际上,在企业的内部已经越来越害怕创新,因为相比创新可能带来的巨大利益,大家更害怕它可能引发的风险,从而使企业丧失己有的优势。同时,越来越多的中层管理者开始安于享受眼前的舒适,不愿冒险,更不愿为创新的风险承担责任。所以企业越大,创新的想法必然越难产生

2012-07-19 23:36:13 698

原创 SWT基础学习

开发步骤:1.创建新工程,在src下新建lib文件夹,然后导入需要的jar包,配置 Java Build Path 将刚刚复制过来的jar包导入到工程,                  2.新建一个java类,并创建main方法,方法内写入:import org.eclipse.swt.SWT;import org.eclipse.swt.graphics.Color;i

2012-07-13 09:37:05 7929 1

原创 摘录2

把事情做到极致:一家公司想要成为市场上的领导者,首先要有领导者的心态,那就是要坚信你做这件事能比所有人都做得好很多。在这种心态下,把每件事情都做到极致,你就能最终成为领导者。尊重数据:尊重数据就是尊重客观事实,数据有时也许片面,但它却诚实而不带情绪,因此可以排除一切人为的偏好因素,也因此让我们更接近真相。所以,请记住以下三条:第一,为一个伟大创意欢呼之前,请先用数据证明其可行性和对用户

2012-07-12 23:34:09 1344

原创 摘录

认识你自己:   希腊圣城德尔斐神殿上镌刻着这样一句名言:“认识你自己。”个人择业时如果不清楚究竟什么是自己喜欢和擅长的,很可能会入错了行。企业用人时不注意这两点,那就给公司埋下了风险。对企业所从事的事业喜欢但不擅长的员工,需要你付出高昂的培训成本。但更糟糕的是擅长但不喜欢的人,他们很有可能变成问题员工――因为他们要么会心不在焉地以低标准衡量工作,要么会把你的公司视为个人增加职场筹码的平台,甚

2012-07-07 19:17:32 688

原创 风雨人生

2012-07-02 22:20:02 343

原创 Struts2基础-helloworld

Struts2开发步骤1.新建web工程Strutsdemo并引入jar包:commons-fileupload-1.2.1.jarfreemarker-2.3.15.jarognl-2.7.3.jarstruts2-core-2.1.8.jarxwork-core-2.1.6.jar2.在web.xml中添加控制器配置:<web-app

2012-07-02 11:34:08 469

原创 servlet基础-hello world

一个简单的servlet示例:开发步骤:1.在MyEclipse中创建一个web工程2.在web.xml文件中添加过滤器:<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:s

2012-07-02 11:24:35 579

原创 jQuery框架主要思想

jQuery主要思想:      通过选择器查找到对应的节点,然后对这个节点进行封装(封装为jQuery对象),通过调用jQuery对象的属性或者方法对这个节点进行操作。编程步骤:1.使用选择器查找节点;2.调用jQuery的方法或属性。。。。

2012-07-02 00:00:20 867

原创 两个计划

在我的有生之余,我要计划着写一部书,不要求多,只要一本就够了,这本书是关于技术和人生的,因为我是搞技术的,而且又经常思考人生,就想把技术和人生结合起来完成一部作品。眼观现在社会,书富如海,百货皆有。但是对社会和对整个人类特别有价值的书真正有几本呢?就是为这样一个目的,补漏这样一个缺陷,这是我的初步计划,从生活中逐步完善。        还有一个计划,就是拍一部有意义的电影,现在的电影真是不可恭

2012-06-25 23:57:36 625

原创 MySql面试

1.已知:一个数据表t_user,有id,username,age字段,age有重复的。    id  int(11),     username varchar(20),     age int(11)求:年龄有重复的人的姓名和年龄?答: select username,age from t_user where age in (select

2012-06-25 23:10:26 669

原创 Hibernate工作流程

Hibernate创建步骤(五大核心接口:Configuration/SessionFactory/Session/Transaction/Query)1.新建工程,导入需要的jar包。2.利用MyEclipse自动生成功能在工程中创建hibernate.cfg.xml配置文件和 HibernateSessionFactory.java工具类。生成的主要内容如下:hiber

2012-06-22 19:15:17 12116

原创 Java程序面试收集

StringBuffer与StringBuilder的区别  StringBuffer和StringBuilder类都表示内容可以被修改的字符串,StringBuilder是线程不安全的,运行效率高,如果一个字符串变量是在方法里面定义,这种情况只可能有一个线程访问它,不存在不安全的因素了,则用StringBuilder。如果要在类里面定义成员变量,并且这个类的实例对象会在多线程环境下使用,

2012-06-09 23:51:16 665

原创 Java学习

http://blog.csdn.net/csh624366188/article/details/7278508

2012-06-04 23:27:34 309

原创 jQuery动画

jQuery动画需要下载js框架jquery-1.4.3.js 1)、show("slow"/"normal"/"fast"/100)  hide()另外,还可以添加一个回调函数,比如:show('slow',function(){//这儿的代码会在动画执行完成之后//才执行。});2)、fadeIn() fadeOut(): 淡入、淡出改变不透明度

2012-05-12 13:14:35 514

原创 jQuery事件处理机制

jQuery事件处理机制:事件处理机制1)事件绑订的方式bind(type,fn)2)、绑订方式的简写形式click(function(){});3)、合成事件hover(enter,leave) : 模拟光标悬停事件toggle(fn1,fn2...):模拟鼠标连续单击事件4)、事件冒泡a、获得事件对象//event不再是原始的事件对象,而

2012-05-12 12:57:24 2649

原创 jQuery操作数组的方法

jQuery操作数组的方法:$()操作返回的如果是一个数组,可以使用如下方法来操作each(fn(i)):循环遍历每一个元素,this代表被迭代的dom对象,$(this)代表被迭代的jquery对象。eq(index):返回index+1位置处的jquery对象index(obj):返回下标,其中obj可以是dom对象或者jquery对象。length:个数get()

2012-05-12 12:21:41 7564

java设计模式之禅

java设计模式之禅,23种设计模式详细说明

2013-08-01

Struts2用到的核心jar包

Struts2用到的核心jar包: 基本功能核心jar包 5个(2.1.8) struts2-core-2.1.8.1.jar(*) Struts2核心包,是Struts框架的“外衣” xwork-core-2.1.6.jar(*) Struts2核心包,是WebWork内核。 ognl-2.7.3.jar 用来支持ognl表达式的,类似于EL表达式,功能比EL表达式强大的多。 freemarker-2.3.15.jar freemarker是比jsp更简单好用,功能更加强大的表现层技术,用来替代jsp的。 在Struts2中提倡使用 freemarker模板,但实际项目中使用jsp也很多。 commons-fileupload-1.2.1.jar 用于实现文件上传功能的jar包。 使用时候将5个Struts2的核心Jar包到WEB-INF/lib/下

2013-07-31

SWT编程高手秘笈.chm

SWT编程高手秘笈,是非常不错的一本书,目录结构如下: Copyright The Developer's Notebook Series Notebooks Are... Notebooks Aren't... Organization Preface What's Inside Conventions Used in This Book What You'll Need Using Code Examples We'd Like to Hear from You Acknowledgments Chapter 1. Getting Started Section 1.1. Downloading the SWT Library Section 1.2. Configuring Eclipse for SWT Development Section 1.3. Supplying the SWT Package to the Java Compiler Section 1.4. Specifying the Location of the Native Library Section 1.5. Using swt.jar in Multiple Projects Chapter 2. SWT Shells Section 2.1. Creating a Simple Shell Section 2.2. Executing the Example Section 2.3. Working with Shell Styles Section 2.4. Creating a Shell Styles Example Section 2.5. Creating Child Shells Section 2.6. Creating Multiple Child Windows Section 2.7. Opening True Dialogs Section 2.8. Setting the Shell Title Text Section 2.9. Setting the Shell Icon Chapter 3. SWT Menus Section 3.1. Creating the Menu Bar Section 3.2. Adding Drop-Down Menus Section 3.3. Adding Separator Bars Section 3.4. Creating a Complete Menu System Section 3.5. Adding Cascading Submenus Section 3.6. Making Menus Perform the Intended Action Section 3.7. Working with Other Menu Item Styles Section 3.8. Determining the State of CHECK and RADIO Menu Items Section 3.9. Adding Keyboard Shortcuts Section 3.10. Creating Pop-Up Menus Chapter 4. SWT Toolbars Section 4.1. Creating the Toolbar Section 4.2. Creating Toolbar Buttons Section 4.3. Creating a Complete Toolbar Example Section 4.4. Making the Buttons WorkAdding Listeners Section 4.5. Adding Separators to Your Toolbar Section 4.6. Adding Check and Radio ToolItems Section 4.7. Determining Whether a Check or Radio Button Is Selected Section 4.8. Using Tool Tips Chapter 5. SWT Text Fields Section 5.1. Adding Text Fields to a Shell Section 5.2. Adding a Border to a Text Field Section 5.3. Positioning the Text Field Section 5.4. Setting the Tab Order Section 5.5. Setting the Text Size Limit Section 5.6. Interacting with the Text in the Text Widget Section 5.7. Populating Text Fields from a Database Section 5.8. Appending Text to a Text Field's Contents Section 5.9. Creating Multiline Text Fields Section 5.10. Wrapping Text Section 5.11. Adding Scrollbars Section 5.12. Reacting to Text Events Section 5.13. Performing Field Validation Section 5.14. Creating Display-Only Text Fields Section 5.15. Creating Password Fields Chapter 6. SWT Buttons Section 6.1. Creating Push-Style Buttons Section 6.2. Responding to Button Clicks Section 6.3. Creating Check Buttons Section 6.4. Determining CHECK Button Status Section 6.5. Adding Listeners to CHECK Buttons Section 6.6. Using Radio-Style Buttons Section 6.7. Causing No Radio Button to be Selected Section 6.8. Creating Toggle Buttons Section 6.9. Determining the State of a Toggle Button Section 6.10. Creating Arrow Buttons Section 6.11. Using Images with Buttons Section 6.12. Setting Tool-Tip Text Section 6.13. Enabling and Disabling Buttons Chapter 7. SWT Lists Section 7.1. Creating a List Section 7.2. Adding Items to a List Section 7.3. Inserting Items in the Middle of a List Section 7.4. Populating a List from a Database Section 7.5. Removing Items from a List Section 7.6. Determining the Selected Items Section 7.7. Determining the Selected Item with Multiple Selections Section 7.8. Causing an Item to Appear Selected Section 7.9. Changing an Item's Text Value Section 7.10. Adding Scrollbars to a List Chapter 8. The SWT Combo Section 8.1. Creating a Combo List Section 8.2. Adding Items to a Combo List Section 8.3. Creating a Working Combo List Section 8.4. Getting the Value of the Selected Item Section 8.5. Programmatically Selecting an Item Section 8.6. Removing Items from a Combo List Section 8.7. Adding Events to Combo Widgets Section 8.8. Allowing Additions to the Combo List Section 8.9. Getting and Setting Text in the Text Portion of the Combo Section 8.10. Setting the Maximum Length for Entries Section 8.11. Deselecting Text Section 8.12. Responding to Item Changes in the Combo Section 8.13. Using the SIMPLE Style Chapter 9. SWT Layouts Section 9.1. What Are the SWT Layouts? Section 9.2. Attaching a Layout to a Container Section 9.3. Filling the Entire Container with Widgets Section 9.4. Changing Widget Placement in FillLayouts Section 9.5. Lining Up Widgets Using RowLayout Section 9.6. Controlling Wrapping of Widgets with RowLayout Section 9.7. Controlling Sizing of Widgets with RowLayout Section 9.8. Creating Vertical Rows Section 9.9. Creating a GridLayout Section 9.10. Creating Column Headings Section 9.11. Controlling Widget Sizing and Alignment Section 9.12. Forcing Widgets to Span Multiple Cells Section 9.13. The SWT FormLayout Section 9.14. Creating a Simple Password Entry Form Chapter 10. SWT Composites and Groups Section 10.1. Subclassing the Composite Class Section 10.2. Using the TextPaneComposite Class on a Shell Section 10.3. Using Composite Class Styles Section 10.4. Using the Group Class Section 10.5. Creating Multiple Instances of a Composite Subclass Section 10.6. Using Composites to Achieve Complex Designs Section 10.7. An Alternate Approach Chapter 11. SWT Tabbed Folders Section 11.1. Creating an Instance of TabFolder Section 11.2. Creating the Individual Tabs Section 11.3. Adding Widgets to the Tabs Section 11.4. Creating a Complete Tabbed Folder Example Section 11.5. Setting a Default Tab Chapter 12. SWT Tables Section 12.1. Creating a Simple Table Section 12.2. Highlighting Rows upon Selection Section 12.3. Allowing Multiple-Row Selection Section 12.4. Selecting Items Programmatically Section 12.5. Changing the Background Color Section 12.6. Creating a Searchable Table Section 12.7. Setting the Background of a Single Cell Section 12.8. Adding Find-and-Replace Functionality Chapter 13. SWT Trees Section 13.1. Creating the Tree Section 13.2. Adding Items to the Tree Section 13.3. Adding Items to Other Items Section 13.4. Creating a Full Tree Example Section 13.5. Using Images with TreeItem Section 13.6. Changing the Image When the Item Is Expanded Section 13.7. Using Trees with Other Widgets Section 13.8. Working with Other Tree Styles Section 13.9. Determining the Checked Item(s) Chapter 14. Other SWT Listeners Section 14.1. Using KeyListener Section 14.2. Using MouseListener Section 14.3. Working with the MouseEvent Class Section 14.4. Responding to Shift-Click Events Section 14.5. Working with the MouseMoveListener Section 14.6. Using the MouseTrackListener Chapter 15. SWT CoolBars Section 15.1. Creating a CoolBar Section 15.2. Using Events with CoolBars Section 15.3. Adding Widgets Other Than Buttons to the CoolBar Section 15.4. Preventing the User from Rearranging the CoolBar Section 15.5. Using ToolBars with CoolBars Chapter 16. SWT Slider and ProgressBar Section 16.1. The SWT Slider Class Section 16.2. Using the SWT ProgressBar Class Section 16.3. Creating a Moving Progress Bar Chapter 17. SWT Standard Dialogs Section 17.1. Using the SWT MessageBox Class Section 17.2. Using the SWT FileDialog Class Section 17.3. Using the SWT FileDialog Class Section 17.4. Using the SWT FileDialog Class Section 17.5. The SWT ColorDialog Class Section 17.6. Using the SWT FontDialog Class Section 17.7. Using the SWT PrintDialog Class Chapter 18. A Complete SWT Application Section 18.1. Designing the Application Section 18.2. Developing the Application Section 18.3. The End of the SWT Road

2012-09-06

pageadmin去除版权 完美去除版权

pageadmin V2.1 20100324去除版权信息 完美去除 版权 破解版权

2011-09-10

shopex去除版权方法

shopex去除版权方法 最直接 完全去除 不影响其它功能 可以添加自己的版权信息

2011-06-02

天天团购系统后台介绍手册

天天团购网后台管理系统说明手册 详细的介绍 细致的说明 pdf文档

2011-04-14

php168数据字典

php168网站模板数据字典 课程资源 数据库 .doc文档

2011-04-14

jsp网上书店系统网上书店系统网上书店系统

网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统网上书店系统

2011-04-11

jsp网上书店系统很多功能

jsp开发的网上书店系统,小巧的系统精简的代码。

2011-03-18

用php写的网站相册管理系统

一个完整的php相册管理系统,用的是MYSQL数据库连接,

2010-05-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除