摘要:
using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using Microsoft.Office.Interop.Word; namespace ExamSecure { /**//// /// ... 阅读全文
2006年5月19日
2006年4月28日
摘要:
文件一:将图形文件存入XML文件中..文件名: imagetoxml.asp" '用 stream 来读取数据 Set objStream = Server.CreateObject("ADODB.Stream") objStream.Type = 1 objStream.Open objStream.LoadFromFile Server.MapPath("2.jpg")'2.jpg要和这个... 阅读全文
2006年4月26日
摘要:
public DataSet PickNumber() { SqlCommand comm = new SqlCommand(); comm.CommandText = "PickNumber"; comm.Connection = Sqlcn; comm.CommandType = Comman... 阅读全文
2006年4月13日
摘要:
using System;namespace EventDemo{ public delegate void CatBrayEventHandle(int score); public class sleeping { public event CatBrayEventHandle CatShout; int theScore; pu... 阅读全文
2006年4月10日
摘要:
#region 判断输入的是否是数字函數 /// /// 名称:IsNumber /// 功能:判断输入的是否是数字 /// 参数:string strNumber:源文本 /// 返回值: bool true:是 false:否 public class myclass { /* * 判断字符串是否为数字函数,正则表达式 */ public bool IsNumbe... 阅读全文
摘要:
本文总结如何在.Net WinForm和.Net WebForm(asp.net)中将图片存入SQL Server中并读取显示的方法 。1.使用asp.net将图片上传并存入SQL Server中,然后从SQL Server中读取并显示出来:1)上传并存入SQL Server 数据库结构 create table test { id identity(1,1), FImage image } 相关... 阅读全文