摘要:
ClientScript.RegisterStartupScript(this.GetType(), "clear", "<script>test()</script>");Control.Attributes.Add()ClientScriptManager 阅读全文
摘要:
建立一个基类页面,在load事件里验证Session,然后让所有需要验证Session的页面继承他. 阅读全文
摘要:
Request.UrlReferrer;Request.Url; 阅读全文
摘要:
onClick="document.location='<%# Eval("ID","../Pages/ProductsInfo/ProductInfo.aspx?productId={0}") %>';" 阅读全文
摘要:
方法一:直接在后台代码中判断System.IO.File.Exists(Server.MapPath("mapPath"))的bool值,再给相应控件设置图片路径.方法二:在数据控件中用Eval(),'<%# System.IO.File.Exists(Server.MapPath(Eval("mapPath").ToString()))?Eval("mapPath").ToString()... 阅读全文
摘要:
SourcePage.aspx: 请注意Button1的PostBackUrl属性设置<%@ Page Language="C#" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">... 阅读全文
摘要:
微软的SQL SERVER提供了两种索引:聚集索引(clustered index,也称聚类索引、簇集索引)和非聚集索引(nonclustered index,也称非聚类索引、非簇集索引)…… (一)深入浅出理解索引结构 实际上,您可以把索引理解为一种特殊的目录。微软的SQL SERVER提供了两种索引:聚集索引(clustered index,也称聚类索引、簇集索引... 阅读全文