摘要:
以前看到的一个object的写法,当时有全部JS都用这样的类的方式去写的冲动 1 <script type="text/javascript"> 2 function Student(){ 3 this.id=0; 4 this.name=""; 5 this.age=0; 6 } 7 8 Student.prototype.GetName=function(){ 9 return this.name;10 }11 12 Student.prototype.SetName=function(value){13 this.name=value; 阅读全文
摘要:
以前在研究Discuz的时候发现了这个算法,觉得我自己写不出来,就记录了一下,现在我建的站的分页都是这段代码 1 /// <summary> 2 /// 获得页码显示链接 1 2 3 4 5 6这种 3 /// </summary> 4 /// <param name="curPage">当前页数</param> 5 /// <param name="countPage">总页数</param> 6 /// <param name="url">超级链接 阅读全文
摘要:
以前开开发过程中使用cookie比较随便,后来发现同一个cookie在不同端口的站点下面其实是共有的,给开发造成一定的麻烦。现在我的cookie访问类已经修改过来了。所以说,有时候网上的东西还是不能拿过来就用啊,具体问题还得具体分析 1 using System; 2 using System.Web; 3 namespace Common.Web 4 { 5 /// <summary> 6 /// 操作Cookie 7 /// </summary> 8 public class Cookie 9 { 10 11 //... 阅读全文
摘要:
今天早上在做练习的时候R.java死活都没有自动生成出来,后来经过观察,发现res包下的文件名不可用使用大写和数字,不然就会发生这样的情况,不知道是不是一个BUG。这篇文章将通过2个Activity来观察Activity的生命周期。1、首先创建第一个Activity,FourLessonDemo1.java 1 package com.example.helloworld; 2 3 import android.app.Activity; 4 import android.content.Intent; 5 import android.os.Bundle; 6 import android. 阅读全文
摘要:
这篇文章将给大家介绍TextView EditText Button Menu这几个控件的使用方法,同时在布局文件里面还有一个新的东西,线性布局,以及string.xml的使用,这里的string.xml是用来做国际化用的。1、创建第一个Activity,ThridLessonDemo1.java 1 package com.example.helloworld; 2 3 import android.app.Activity; 4 import android.content.Intent; 5 import android.os.Bundle; 6 import android.view. 阅读全文
摘要:
这篇文字是讲怎样创建2个Activity以及这2个Activity直接的数据传输1、首先创建第一个Activity,SecondLessonDemo1.java 1 package com.example.helloworld; 2 import android.app.Activity; 3 import android.content.Intent; 4 import android.net.Uri; 5 import android.os.Bundle; 6 import android.view.View; 7 import android.view.View.OnClickListe 阅读全文
摘要:
首先我们先创建一个Activity,所谓的Activity,就是平时WEB开发中经常接触到的页面(Page),我们可以这样来理解1、在src文件夹的包下面,创建MainActivity.java 1 package com.example.helloworld; 2 3 import android.os.Bundle; 4 import android.app.Activity; 5 import android.view.Menu; 6 import android.view.MenuItem; 7 import android.widget.Button; 8 import and... 阅读全文
摘要:
我一般在进行数据库访问时都是调用存储过程来进行数据操作的,下面是一个最基本的存储过程书写方式。 1 alter procedure [dbo].[lsp_EditURL] as 2 declare @typo varchar(255) 3 declare @id int 4 declare w_cursor CURSOR FOR 5 select [id],[content] from dbo.doc where parent>0 6 open w_cursor 7 fetch NEXT fron w_cursor into @id,@typo ... 阅读全文