博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2008年1月15日

摘要: private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { // 对第1列相同单元格进行合并 if (e.ColumnIndex 0 && e.RowIndex==-1 && dataGridView1.Columns[e.ColumnIndex] is DataGridViewTextBoxColumn) { if (dataGridView1.Columns[e.ColumnIndex].HeaderText.Trim().ToString() .Equals(dataGridView1.Columns[e.ColumnIndex-1].HeaderText.Trim().ToString())) 阅读全文

posted @ 2008-01-15 22:07 Boscoing 阅读(382) 评论(0) 推荐(0)

摘要: 1, set web application Set any port, it’s better to use a fix port. Because the “ASP.NET Developer Server” does not support access from other ip other than the host computer, we need a program to forward the ip request from outside 2, TCPTrace.exe This program will accept any network request from port 80 to port 5000 Then you can start up the web project, and try to access from other computer like this: 阅读全文

posted @ 2008-01-15 17:21 Boscoing 阅读(170) 评论(0) 推荐(0)