摘要:
window.getRequest = function (url) { var theRequest = new Object(); var indexOf = url.indexOf("?"); if (indexOf > -1) { ... 阅读全文
摘要:
代码命名规范 1.用Pascal规则来命名方法和类型。 /// <summary> /// 数据表格 /// </summary> public class DataGrid { /// <summary> /// 数据绑定 /// </summary> public void DataBind() 阅读全文