2006年1月28日

摘要: using System; namespace ClassLibrary1{ public class Class1 { public Class1() { } public int GetSum(int x, int y) { //return x + y; return 11; } }} System.Reflection.Assembly a = System.Ref... 阅读全文
posted @ 2006-01-28 12:19 城 阅读(184) 评论(0) 推荐(0)
 
摘要: 在 web.config 的 节中添加以下代码即可,感谢小鹏同志指点: Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=447503 阅读全文
posted @ 2006-01-28 12:13 城 阅读(175) 评论(0) 推荐(0)
 
摘要: private void Button3_Click(object sender, System.EventArgs e) { NoSortHashTable hashtbl = new NoSortHashTable(); hashtbl.Add("1","aaa"); hashtbl.Add("2","aaa"); hashtbl.Add("3","aaa"); ha... 阅读全文
posted @ 2006-01-28 12:01 城 阅读(206) 评论(0) 推荐(0)
 
摘要: 作者:lovecherry 来源:cnblogs 在应用中,很多时候需要在绑定以后去修改DataGrid的呈现,比如(1)当数据符合一定的条件需要修改它的呈现方式(2)将数据库中的逻辑值(0,1)变成男女来呈现等等大致有2种方法来实现上述操作(1)在ItemDataBound中修改值(2)在绑定的时候用一个函数进行过虑同样,数据库按照 http://www.aspxboy.com/446/arc... 阅读全文
posted @ 2006-01-28 11:54 城 阅读(242) 评论(0) 推荐(0)