上一页 1 ··· 8 9 10 11 12
摘要: 一、定义变量 --简单赋值 declare @a int set @a=5 print @a --使用select语句赋值 declare @user1 nvarchar(50) select @user1='张三' print @user1 declare @user2 nvarchar(50) 阅读全文
posted @ 2017-06-24 14:57 乌柒柒 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: 使用上传的DotNetSpeech.dll文件 using DotNetSpeech; protected void read_Word(object word) { SpeechVoiceSpeakFlags SpFlags = SpeechVoiceSpeakFlags.SVSFlagsAsyn 阅读全文
posted @ 2017-06-21 10:29 乌柒柒 阅读(334) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 对字符串进行MD5转换 /// </summary> /// <param name="st"></param> /// <returns></returns> public static string MD5(string st) { return System 阅读全文
posted @ 2017-06-13 13:34 乌柒柒 阅读(82) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12