摘要: 最近在学c#,感觉是比c++好学,今天自己编的代码成功了,祝贺自己一下,同时留下自己学习的痕迹:using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace ConsoleApplication3 { class Program { static void Main(st... 阅读全文
posted @ 2010-04-17 13:20 神舟龙 阅读(248) 评论(2) 推荐(0) 编辑
摘要: 一般性博客及游戏等用户的注册都会用到简单的登陆或者注册窗体:web服务器控件部分要注意的是对用户输入数据的审查即对用户输入信息的登陆验证,还有就是对textbox控件的模式选择,选择textmode为password,以及对各控件的非空判定,有时候还需要用到正则表达式进行限制,对于单选按钮radio其group那么要设置在同一组内,以便选择是只能选择一个;每一个web控件必须是runat=&ldq... 阅读全文
posted @ 2010-04-17 11:39 神舟龙 阅读(1506) 评论(0) 推荐(0) 编辑
摘要: 流程控制语句:if语句,其基本语法是: if <test> <code executed if <test>is true> else <code executed if <test>is false>当然也可以嵌套,其形式是: if <test>{ <code executed if <test>is tr... 阅读全文
posted @ 2010-04-17 11:38 神舟龙 阅读(3644) 评论(0) 推荐(0) 编辑