随笔分类 -  Asp.Net 随笔

asp.net 逆向步骤
摘要:1.查壳工具,先查一下有没有壳,如果有壳,先脱壳。 2.如果软件有混淆,使用 de4dot 还原混淆的代码。 3.使用dnSpy查看源代码。 阅读全文
posted @ 2021-08-14 09:38 努力建设我的管道! 阅读(207) 评论(0) 推荐(0)
Asp:TreeView 异步加载源码
摘要:1.TreeNode的PopulateOnDemand="True"后节点就是动态从后台加载的.2.但是如果上层TreeView的EnableClientScript="false",就会导致页面Postback3.TreeView的TreeNodePopulate是PopulateOnDemand="True"并且TreeNode内已有数据才触发的4.TreeNode的Depth属性是指从根结点... 阅读全文
posted @ 2010-06-04 00:43 努力建设我的管道! 阅读(1328) 评论(1) 推荐(1)
GridView 添加鼠标效果
摘要:1 protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) 2 { 3 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#FFC0C0'"... 阅读全文
posted @ 2006-12-09 16:51 努力建设我的管道! 阅读(225) 评论(0) 推荐(0)
用ArrayList 来对DropDownList的数据绑定简要例子
摘要:用ArrayList 来对DropDownList的数据绑定简要例子 阅读全文
posted @ 2006-12-08 23:11 努力建设我的管道! 阅读(524) 评论(1) 推荐(1)
C# split 使用方法
摘要:第一种方法:string s=abcdeabcdeabcde;string[] sArray=s.Split(c) ;foreach(string i in sArray) Console.WriteLine(i.ToString());输出下面的结果:abdeabdeabde 第二种方法:我们看到了结果是以一个指定的字符进行的分割。使用另一种构造方法对多个字符进行分割: string s=ab... 阅读全文
posted @ 2006-12-06 17:00 努力建设我的管道! 阅读(1166) 评论(0) 推荐(0)