上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: 1.get和post 的区别 get是从服务器上获取数据,post是向服务器传送数据; get安全性非常低,数据显示在地址栏,post安全性较高; 但是执行效率却比Post方法好; get有字节限制为1024字节,post没有限制,起到限制的是服务器设置和内存大小及程序的处理能力; 对于get方式, 阅读全文
posted @ 2016-05-10 22:35 李寒星 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 12323 阅读全文
posted @ 2016-05-09 23:55 李寒星 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 1.请写出下面所示的控件的html 代码? <div> <div><a>姓名:</a><input type="text" name="names" /></div> <div> <a>性别:</a> <input type="radio" name="a" >男 <input type="radi 阅读全文
posted @ 2016-05-09 23:49 李寒星 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: 1.SQLSERVER服务器中,给定表 table1 中有两个字段 ID、LastUpdateDate,ID表示更新的事务号, LastUpdateDate表示更新时的服务器时间,请使用一句SQL语句获得最后更新的事务号 答:Select ID FROM table1 Where LastUpdat 阅读全文
posted @ 2016-05-09 23:34 李寒星 阅读(1083) 评论(0) 推荐(0) 编辑
摘要: 1.描述一下C#中索引器的实现过程,是否只能根据数字进行索引? 答:不是。可以用任意类型。 2.<%# %> 和 <% %> 有什么区别? 答:<%# %>表示绑定的数据源 <% %>是服务器端代码块 3.重载与覆盖的区别? 答:1、方法的覆盖是子类和父类之间的关系,是垂直关系;方法的重载是同一个类 阅读全文
posted @ 2016-05-09 22:54 李寒星 阅读(2278) 评论(0) 推荐(0) 编辑
摘要: 1.两个对象值相同(x.equals(y) == true),但却可有不同的hash code,这句话对不对? 答:不对,有相同的 hash code 编码格式。 2.swtich是否能作用在byte上,是否能作用在long上,是否能作用在String上? 答:switch(expr1)中,expr 阅读全文
posted @ 2016-05-09 22:31 李寒星 阅读(834) 评论(0) 推荐(0) 编辑
摘要: 1.简述 private、 protected、 public、 internal 修饰符的访问权限。 答 . private : 私有类,私有成员, 在类的内部才可以访问。 protected : 保护成员,该类内部和继承类中可以访问。 public : 公共成员,完全公开,没有访问限制。 int 阅读全文
posted @ 2016-05-09 22:01 李寒星 阅读(3580) 评论(0) 推荐(0) 编辑
摘要: 媒体播放器插件: mediaelement-and-player.js 轮播图插件: swiper.min.js 阅读全文
posted @ 2016-05-03 16:38 李寒星 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 百度编辑器: http://ueditor.baidu.com/website/ <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="102400000" /> </requ 阅读全文
posted @ 2016-05-03 16:32 李寒星 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 官方教程: http://www.my97.net/ 阅读全文
posted @ 2016-05-03 16:27 李寒星 阅读(1013) 评论(6) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页