在学校学习了几年,转眼大三了,明年大四即将出去找工作,似乎在学校C#、Java、jsp等都学了,但是似乎自己动手做系统的时候,感觉有时候还是欠缺,今天去图书馆找了本Ajax的书,其实之前也接过类似的书,但是没有好好研究,这次下定决心,好好研究下。学习Ajax之前当然要好好补习一下自己的Javascript知识,其实自己有面向对象的语言(C#、Java)的基础,学起来还是蛮顺的。Javascript是一种基于面向对象的语言,不过却不是面向对象(OOP)的,javascript有许多方面类似oop的,但它对于传统的oop技术的支持却是很有限的。例如,类成员的可见性只能通过一种受限的方式实现。不管怎 Read More
posted @ 2012-05-08 21:43 小梁的程序世界 Views(231) Comments(0) Diggs(0)
1.一个简单的网页中设为主页和收藏网页的HTML代码:设为主页的代码: <a href="#" onclick ="this.style.behavior='url(#default#homepage)';this.sethomepage('http://www.mingrisoft.com')" style=" color:Black; font-size: 9pt; font-family: 宋体; text-decoration :none;" >设置主页</a>收藏当前网 Read More
posted @ 2012-05-02 21:57 小梁的程序世界 Views(197) Comments(0) Diggs(0)
asp.net生成验证码的方法: public string RandomNum(int n) // { //定义一个包括数字、大写英文字母和小写英文字母的字符串 string strchar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"; //将strchar字符串转化为数组 //String.Split 方法返回包含此实例... Read More
posted @ 2012-04-30 17:26 小梁的程序世界 Views(965) Comments(0) Diggs(0)
全国天气预报代码全国各地城市天气预报代码,整理如下:第一种:<iframe src="http://weather.265.com/weather.htm" width="160" height="54" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no"></iframe> 第二种:<IFRAME ID=& Read More
posted @ 2012-04-20 22:48 小梁的程序世界 Views(900) Comments(0) Diggs(0)
前几天完成老师的作业,网上投票系统,今天终于做完了,特地把代码分享一下。第一个页面代码: 1 using System; 2 using System.Data; 3 using System.Configuration; 4 using System.Collections; 5 using System.Web; 6 using System.Web.Security; 7 using System.Web.UI; 8 using System.Web.UI.WebControls; 9 using System.Web.UI.WebControls.WebParts; ... Read More
posted @ 2012-04-12 22:14 小梁的程序世界 Views(920) Comments(0) Diggs(1)