摘要:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-... 阅读全文
摘要:
1.前台页面一般不用gridview datalist treeview updatepanel 等控件,因为他们会生成很多我不想要的代码。而且嵌套一大堆table2.用repeater+div+css+ul li已经足够我做很多东西了。3.发布后的页面,可以把一些空行和换行 和一些不必要的空格去掉,尽量减少aspx页面的容量。提高加载速度。4.在页面的title写上本页内容的关键字,这样便于搜索... 阅读全文
摘要:
<INPUTonclick=document.all.WebBrowser.ExecWB(1,1)type=buttonvalue=打开name=Button1><INPUTonclick=document.all.WebBrowser.ExecWB(4,1)type=buttonvalue=另存为name=Button2><INPUTonclick=document... 阅读全文
摘要:
<script> function show(ur, id) { var plaryer = document.getElementById("mediaplayer1") for (var i = 0; i < plaryer.currentPlaylist.count; i++) { // alert(plaryer.currentPlaylist.Item(i).getIt... 阅读全文
摘要:
protected void btn_OK_Click(object sender, EventArgs e) {//登录 String code = CodeTest.Code; if (!this.code.Text.Trim().Equals(code)) { Response.Write("<script>alert('验证码错误!');</script>"); r... 阅读全文
摘要:
一、 服务器优化l Windows系列:64位Win2008r2 + Hpyer-V + 负载均衡 + IIS7.564位Win2003 + 虚拟机 + 负载均衡 + IIS6禁止服务器访问外网。关掉不必要的端口。去掉每个磁盘的所有权限,只保留administrators组和system完全控制权限。IIS7.5标识使用ApplicationPoolIdentity,给目录权限用户是:IIS Ap... 阅读全文
摘要:
使用一个工作数组来记录每个位置的相关状态1、最小分配数2、最大分配数3、剩余分配数其实也就是递归的一个思想,分配掉第一个以后剩余的还是一个分解问题,只不过是总分配数,项数都变化了例如: sum = 10, n = 4, min = 1, max = 5 的工作数组以及初始拆分数组如下拆分结果数组1135当前位置最小值1135当前位置最大值2245剩余分配数9850另一个核心是在循环嵌套中使用一个标... 阅读全文