06 2007 档案
摘要:public void FillTree( TreeNodeCollection tns, string strParentID) { TreeNode tmpNd; int intId; DataView dv = new DataView(); dv.Table = ds.Tables[0]; dv.RowF...
阅读全文
摘要:A.指定 客户端元素 资源的路径 B.指定 服务器控件 资源的路径 C.确定当前网站的物理文件路径 ============================ 使用网站中的资源时,通常必须指定资源的路径。 例如,您可以使用 URL 路径引用页面中的图像文件或网站中其他位置处的页面的 URL。 同样,Web 应用程序中的代码可以使用基于服务器的文件的物理文件路径对文件进行...
阅读全文
摘要:要创建带子键的 Cookie,您可以使用用于编写单个 Cookie 的各种语法。以下示例显示了编写同一 Cookie 的两种不同方法,其中的每个 Cookie 都带有两个子键:法一: Response.Cookies["user"]["nm"] = "aa"; Response.Cookies["user"]["pwd"] = "bb"; Response.Co...
阅读全文
摘要:Asp.net利用Application与Session统计网站在线人数和访问总人数 protected void Application_Start(Object sender, EventArgs e) { SqlConnection con=new SqlConnection("se...
阅读全文