07 2017 档案
摘要:<%# Bind("Subject") %> //绑定字段<%# Container.DataItemIndex + 1%> //实现自动编号<%# DataBinder.Eval(Container.DataItem, "[n]") %>通常使用的方法(这三个性能最好)<%# DataBinder
阅读全文
摘要:Cookie //将数据保存到Cookie //Cookie是一个字典 //如果没有指定Cookie的保存时间,则这个Cookie是临时Cookie //临时Cookie只要浏览器一关闭,就取消 //Response.Cookies["account"].Value = txt1.Text; //如
阅读全文
摘要:"window.location.href"、"location.href"是本页面跳转 "parent.location.href"是上一层页面跳转 "top.location.href"是最外层的页面跳转 举例说明: 如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是
阅读全文