随笔 - 441
文章 - 4
评论 - 84
阅读 -
109万
07 2007 档案
用户控件使用事件
摘要:用户控件使用事件与调用页面交互 帐户 自由港1 类别 [选择一个类别或键入一个新类别] ; [选择一个类别或键入一个新类别] ; [选择一个类别或键入一个新类别] 1.定义事件参数类 using System; namespace ASPNetCookbook.CSExamples { /// /// This class provides the definition of the cust...
阅读全文
用户控件使用事件与调用页面交互
摘要:1.定义事件参数类 using System; namespace ASPNetCookbook.CSExamples { /// /// This class provides the definition of the custom event arguments used /// as the event arguments for the message sent fro...
阅读全文
用户控件使用事件与调用页面交互
摘要:1.定义事件参数类 using System; namespace ASPNetCookbook.CSExamples { /// /// This class provides the definition of the custom event arguments used /// as the event arguments for the message sent fro...
阅读全文
招聘.NET开发人员
摘要:lily@deelon.com 工作地点:广州市 招聘人数:2工作年限:三年以上 外语要求:英语 良好 学 历:本科 职位描述:职责描述: 参与.Net企业级管理系统或者软件产品的开发工作。 任职要求: 1、计算机或相关专业,本科以上学历,英语4级或以上; 2、精通.Net Framework,具有2年C/S、B/S模式的开发经验,熟练掌握JavaScript、VBScript、DHTM...
阅读全文
使用sql语句删除标识列属性
摘要:alter table a add xxx int update a set xxx=id alter table a drop column id exec sp_rename 'a.xxx', 'id', 'column'
阅读全文
使用metawebblog api 实现自己的博客接口
摘要:metawebblog api 是一个博客标准,这样我们就可以通过实现这个标准来实现 我们自己的博客支持word2007,windows liver writer来写博客. metablog的.net接口如下. using System;using System.Collections.Generic;using System.Text;using CookComputing.Xml...
阅读全文
sqlserver 判断临时表是否存在语句.
摘要:if object_id('tempdb..#tmpNewTopic') is not null drop table #tmpNewTopic
阅读全文