-
2008-08-05 17:07:15 / JavaScript & VBScript & DHTML 脚本技术讨论版
用Javascript写后台算起来也有好久了...什么都好,用起来舒服,语法简练,但是开发过程还是有些地方不爽,Javascript对二进制和编码的处理很弱,比如二进制根本就没相关处理函数,没有VBS来的直接,很是麻烦,还有处理ASCII码也是,西文字符还好,中文字符可就头大了,还是麽有一个好的解决方案。其他方面个人感觉都可以克服,而且使用起来要比VBS来得舒服,但估计不适合大项目的开发...有待于进一步开拓它的威力吧...
查看(265)
评论(2)
-
2008-07-17 22:24:20 / .Net 相关技术讨论版
WebFormDemo.aspx代码:WebFormDemo1密码用户名WebFormDemo.aspx.cs代码:using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.HtmlControls;namespace WebFormDemo{public partial class WebFormDem
查看(454)
评论(6)
-
2008-07-03 13:52:36 / JavaScript & VBScript & DHTML 脚本技术讨论版
以前使用:function class1() {this.tel = "123456";var address = "xxxxxx";this.method = function() {//访问私有变量Response.Write( address );}}var oClass1 = new class1();oClass1.method();来访问私有变量,但现在用:function class1() {this.color="red";var address = "xxxx";}class1.prototype.method = function() {Response.Write( address );}var oClass1 = new class1();oClass1.method();就不行了,出错信
查看(315)
评论(6)