.NET学习
文章平均质量分 77
sunshine320
性格
爱好
生活态度
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
asp.net回调更新gridview
以前写过关于回调的代码,今天想用的时候又找不到了,费了好大劲才搞定,纪录一下,以备后用。 其实比较简单,关键是最后一行调用的函数renderGrid(_grid)。 public string sCallBackFunctionInvocation; string returnstring; protected void Page_L原创 2010-01-19 20:32:00 · 600 阅读 · 0 评论 -
Oracle左右全连接总结
--建立测试数据 create table a(id number); create table b(id number); insert into a values(1); insert into a values(2); insert into a values(3); insert into b values(1); insert into b values(2)转载 2010-02-03 10:40:00 · 487 阅读 · 0 评论 -
C#输出DataGridView内容
<br />对于查询结果经常需要输出,常用的有两种方式:<br />一是通过Microsoft.Office.Interop.Excel.Application来实现输出<br />public static bool ExportForDataGridview(DataGridView gridView, string fileName, bool isShowExcle) { Microsoft.Office.Interop.Excel.Application app = new原创 2010-06-25 10:15:00 · 842 阅读 · 0 评论 -
通过进程Process启动或关闭程序
<br />启动程序:<br />Process[] flatWorldProcess = Process.GetProcessesByName("MME2D"); if (flatWorldProcess != null && flatWorldProcess.Length == 0) { if (MessageBox.Show("2D系统没有启动,是否立即启动?", "提示", MessageBoxButtons.Ye原创 2010-07-21 11:11:00 · 1310 阅读 · 0 评论
分享