C#
文章平均质量分 59
朱志飞
QQ648895145
展开
-
C# 使用HttpListener创建简易Web服务器
C# 使用HttpListener创建简易Web服务器转载 2022-06-26 16:29:06 · 1507 阅读 · 0 评论 -
解决winform打包后 sqlite只能读不能写的问题
问题描述winform在开发电脑上正常,但打包后放在其他机子,安装后只能读不能写,刚怀怀疑是dll 的问题,System.Data.SQLLite.dll换32位的,问题依旧。使用SQLLite工具 单独打开SQLLite数据库文件driver.db ,发现也是只能读不能写,会报错"Unable to open database file"将driver.db 文件,安全权限加大,...原创 2020-03-17 18:31:19 · 1237 阅读 · 0 评论 -
Some kind of disk I/O error occurred 解决方法
[size=medium]在开发win ce6.0程序的时候 用SQLITE做数据存取,做“增改”操作的时候 出现“Some kind of disk I/O error occurred” 之前怀疑是system.data.sqlite.dll的问题 但当我执行查询操作的时候却可以查询出来,说明这个DLL是可以用的,定是哪里配置错了。在网上找到“不出意外的话应该是你没有将程序部署在模拟器...原创 2012-04-25 11:57:42 · 2439 阅读 · 0 评论 -
反射
[code="java"] Type t = parentFrom.GetType(); object showPage = Activator.CreateInstance(t); MethodInfo methodInfo = t.GetMethod("ShowPage"); ...原创 2012-05-08 09:13:55 · 87 阅读 · 0 评论 -
VS2008 安装MVC
[b]1、安装补丁[/b][url]http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&displaylang=en[/url][b]2、安装插件[/b][url]http://download.microsoft.com/download/7/B/1...原创 2012-05-21 14:47:20 · 234 阅读 · 0 评论 -
简单的 增删改查
[code="java"] try { String connectionString = "Integrated Security=SSPI;Persist Security Info=False;" + "Initial Catalog=Northwind;Data Source=localhost"; ...原创 2012-04-20 16:45:25 · 97 阅读 · 0 评论 -
C# 邮件发送
protected void Button1_Click(object sender, EventArgs e) { jmail.Message jmessage = new jmail.Message(); jmessage.Charset = "GB2312";//编码 jmes...原创 2013-10-17 15:02:49 · 265 阅读 · 0 评论 -
字符串string和内存流MemoryStream及比特数组byte[]互转比转换
字符串string和内存流MemoryStream及比特数组byte[]互转比较定义string变量为str,内存流变量为ms,比特数组为bt1.字符串转比特数组(1)byte[] bt=System.Text.Encoding.Default.GetBytes("字符串");(2)byte[] bt=Convert.FromBase64String("字符串");...原创 2013-10-24 09:39:28 · 1121 阅读 · 0 评论 -
C# AsyncEventHandler 异步处理
using System;namespace ConsoleApplication1{ class Class1 { public delegate void AsyncEventHandler(); void Event1() { Console.WriteLine("Event...原创 2013-10-25 13:58:31 · 1714 阅读 · 0 评论