博文
分类
标签
归档
资源导航
更多
资源下载
百宝箱
留言板
关于
暗/亮主题
博文
分类
标签
归档
资源导航
更多
资源下载
百宝箱
留言板
关于
暗/亮主题
只剩记忆可以炫耀,即使说说也好
博文
GitHub
微博
豆瓣
C#枚举中添加特殊字符的方法
C# 声明枚举对象1234567891011public enum EnumFileCategory{ [Description("goods_files/pdf")] Pdf, PdfImg, [Description("My/image")] MyImg, [Description("My/v...
2013-02-07
develop
dotnet
develop
dotnet
阅读全文
SQL Server以命令行方式从BAK文件恢复数据库
获取逻辑文件名和数据库名称 1restore filelistonly from disk = 'D:\DB\DB_OMINFO_backup_6633232.bak' 执行还原 12restore database DB_INFOS FROM disk = 'C:\DB\DB_OMINFO_backup_6633232.bak' with mov...
2010-08-09
develop
database
develop
database
阅读全文
366种语言的Helloworld
366种语言的Helloworld
2010-04-12
develop
develop
阅读全文
FTP425错误
连接提示: 425 Can't open data connection for transfer of "/" 解决方法: 开放端口,不推荐.为了保障安全 调整客户端软件的模式:使用主动模式
2009-12-30
develop
devops
develop
devops
阅读全文
C#读取CSV文件
C# 逐行读取 CSV 文件 123456789101112131415161718192021using Microsoft.Office.Interop.Excel;using Microsoft.VisualBasic.FileIO;public List<string> ReadFromCsv(){ var partList = new List<s...
2009-06-07
develop
dotnet
develop
dotnet
阅读全文
asp.net执行文件下载
123456789FileStream fs = new FileStream("文件路径", FileMode.Open);byte[] bytes = new byte[(int)fs.Length];fs.Read(bytes, 0, bytes.Length);fs.Close();Response.ContentType = "application/...
2009-06-05
develop
dotnet
develop
dotnet
阅读全文
c#的stringFormat含有花括号
C# string.Format 中含有花括号 比如: 1string s = string.Format("{\"id\"=\"{0}\"}, \"name\"=\"{1}\"}", id, name); 这样的格式会报...
2009-05-09
develop
dotnet
develop
dotnet
阅读全文
table中选中某一行改变背景色
table中选中某一行改变背景色
2009-05-05
develop
frontend
develop
frontend
阅读全文
asp.net写访问权限
当前标识没有对 Temporary ASP.NET Files 的写访问权限的解决办法 在 IIS 上部署 asp.net 程序后出现错误: 1当前标识(NT AUTHORITY/NETWORK SERVICE)没有对 C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files 的写访问权限 这种情况通常是因为...
2009-04-01
develop
dotnet
develop
dotnet
阅读全文
上一页
15 / 15