04 2016 档案
摘要:1、ext:Hidden 必须在body里面有ext:ResourceManager的情况下才能运行 2、ext:Store里面不能有文字
阅读全文
摘要:public List<Content> selectADTAe(Content data)//模糊查询 { return Context.Content.Where(r => r.Title.Contains(data.Title)).ToList(); } Repeater1.DataSourc
阅读全文
摘要:ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript", "<script>test();</script>"); response.write("<script>aletr();</script>") 跳转页面:R
阅读全文
摘要:///数字与数组或者字符串里面的内容比较 /// private void YunXing() { int[] cs = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; List strList = new List(); s...
阅读全文
摘要:class PubEventArgs : EventArgs { private readonly string _magname; public string Magname { get { return _magname; } } public PubEventArgs(st...
阅读全文
摘要:int[] arr1 = new int[] { 1, 2, 3 }; int[] arr2 = new int[] { 4, 5, 6 }; int n=arr1.Length+arr2.Length; int[] arr3=new int[n]; for (int i = 0; i < n; i+...
阅读全文