
心得
nicholas1009
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c# 编程规范
一、命名1.用pascal规则来命名方法和类型.public class TextBox{ public void DataBind() { }}2.用camel规则来命名局部变量和方法的参数.string userName;public AddUser(string userId, byte[] password);3.转载 2009-10-08 10:51:00 · 615 阅读 · 0 评论 -
asp.net中框架页面超时,如何返回到首页
function GoLogin() { window.parent.location="你的log.aspx的路径"; } 或者直接链接 加上 target="_parent" 或_top 1转载 2011-07-05 21:28:58 · 1170 阅读 · 0 评论