存储过程中执行带输出参数的动态SQL
摘要:--存储过程中执行带输出参数的动态SQL declare @sql nvarchar(max)declare @tableName varchar(200)declare @id int set @tableName='tableA' set @sql = 'select @id=id from ' + @tableName exec sp_executesql @sql, N'@id int o...
阅读全文
posted @
2010-10-08 17:17
一粒沙
阅读(476)
推荐(0)
silverlight依赖属性
摘要:1.一个实体类,需要实现“INotifyPropertyChanged”接口代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--publicclassstudent:INotifyPropertyChanged{stringn...
阅读全文
posted @
2010-10-06 21:26
一粒沙
阅读(339)
推荐(0)
Silverlight初体验之-设置启动页面
摘要:如题:在Silverlight中怎么设置启动页面,当新建一个Silverliht页面或项目中都会存在一个App.xaml页面,这个页面是Silverlight应用程序文件,派生于Application类,在一个Silverlight应用程序项目中,必须有一个该文件,它负责指定应用程序的启动页面,以及应用程序的其他设置,当Silverlight应用程序在浏览器中运行时,有Silverlight插件负...
阅读全文
posted @
2010-10-06 20:39
一粒沙
阅读(223)
推荐(0)