摘要: 我们在使用一些第三方的编程框架的时候,或在操作业务代码的时候经常会产生IList,有时需要转成DataSet方便处理,下面是从园子里的其它人那里转来的代码。阅读全文
posted @ 2008-02-29 14:47 落花人独立 阅读(1015) | 评论 (0) 编辑 |
|
|||
02 2008 档案摘要: 我们在使用一些第三方的编程框架的时候,或在操作业务代码的时候经常会产生IList,有时需要转成DataSet方便处理,下面是从园子里的其它人那里转来的代码。阅读全文 posted @ 2008-02-29 14:47 落花人独立 阅读(1015) | 评论 (0) 编辑 | 摘要: http://www.cnblogs.com/luohuarenduli/admin/www.cnblogs.com/leadzen/archive/2008/02/24/1073404.html写的不错。阅读全文 posted @ 2008-02-24 20:55 落花人独立 阅读(378) | 评论 (3) 编辑 | 摘要: 在ModalDialog中操作父窗口对象
1、不能使用window.parent Window.parent是用来在frame中进行操作的,在对话框中不能用来操作父窗口对象 2、正确的做法 调用modaldialog时通过传参数的方式操作 例: 需求 父窗口页面为a.html 子窗口页面为b.html。a.html中有文本框id为test1,在打开的对话框中点击按钮,将a.html的文本框值改为“子窗口值”。 实现 打开对话框时把test1作为参数传给子窗口,在子窗口中获取参数,将参数对象(即a.html中传过来的text对象)的value属性值设置为“子窗口值” 注意:这里只能传id,不能传name a.html代码如下 阅读全文 posted @ 2008-02-21 20:30 落花人独立 阅读(4173) | 评论 (0) 编辑 | 摘要: 我安装的时候差不多用了三个小时,当时就是CPU占用100%,硬盘也不闪动,但是就是这样安完了.阅读全文 posted @ 2008-02-15 11:06 落花人独立 阅读(247) | 评论 (0) 编辑 | 摘要: So here is my solution. I'll cover the main points of interest and if you want to see more, I have
uploaded all the source and example to the new MSDN Code Gallery. http://code.msdn.microsoft.com/AlwaysShowHeaderFoot Start out by extending the GridView control and add the following structure. The most important part here is to override the PerformDataBinding method. As you can see here. I am intercepting the data and making sure there is at lease one r阅读全文 posted @ 2008-02-01 23:54 落花人独立 阅读(548) | 评论 (2) 编辑 |
|
|||