上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
  2007年10月10日
摘要: http://www.cnblogs.com/Files/EasyData/DataAccessApplicationBlock.zip 部分代码: private utility methods & constructors#region private utility methods & constructors // Since this class pro... 阅读全文
posted @ 2007-10-10 18:06 迷你软件 阅读(598) 评论(0) 推荐(0) 编辑
  2007年10月5日
摘要: http://ave.amd.com/ http://www.inviteshare.com/ http://www.challenges.com.cn/ 阅读全文
posted @ 2007-10-05 04:52 迷你软件 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1、新建一个类库,例如库名为 ResourcesLibrary; 2、添加引用 System.Drawing; 3、添加资源文件(添加--新建项--资源文件),例如文件名为 Resource1.resx; 4、添加图片(打开Resource1.resx,单击“添加资源”后的小三角,选择添加现有文件,选择需要作为资源的图片),例如添加了图片 Sunset.jpg 5、添加类,例如名为 GetImag... 阅读全文
posted @ 2007-10-05 02:52 迷你软件 阅读(3713) 评论(10) 推荐(0) 编辑
  2007年10月4日
摘要: 摘至:http://www.codeproject.com/aspnet/createTextImage.asp 阅读全文
posted @ 2007-10-04 20:13 迷你软件 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 摘至:http://www.codeproject.com/aspnet/ASPImaging1.asp Download source files - 32.3 Kb Introduction This is a sample project to do image manipulation in ASP.NET projects, using .NET's GDI library, and r... 阅读全文
posted @ 2007-10-04 19:16 迷你软件 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 我们在前面已经完成了饼图和条形图的自定义类,下面我们将要应用这些类了。 使用vs.net新建一个名为Insight_cs的Web应用程序,并且添加到刚才的Insight工程中。删除默认的webform1.aspx文件,新建一个名为SalesChart.aspx文件。打开此文件,在代码模式下,将第一行替换为: 打开文件SalesChart.aspx.cs,其中代码如下所示: ... 阅读全文
posted @ 2007-10-04 19:07 迷你软件 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 本文代码是基于Beta2开发 越来越多的Web应用需要使用图表来进行数据显示和分析。例如:投票结果显示,公司生产情况统计图显示分析等等。利用图表来显示数据,具有直观,清晰等优点。 传统的ASP技术是不支持画图表的,那么就不得不利用Active X或者Java applets来实现这个功能。新近出现的ASP.NET解决了这个问题,只要利用ASP.NET中关于图形显示的类,就可以画... 阅读全文
posted @ 2007-10-04 19:05 迷你软件 阅读(764) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2007-10-04 06:40 迷你软件 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Imports System Imports System.Data Imports System.Data.SqlClient public Class MainClassclass MainClass Shared Sub Main()Sub Main() Dim thisConnection As New SqlConnection("server=(local)\SQL... 阅读全文
posted @ 2007-10-04 06:29 迷你软件 阅读(3709) 评论(0) 推荐(0) 编辑
摘要: public DataSet FillDataSet() { SqlConnection conn = new SqlConnection("server=(local);Integrated Security=true;Initial Catalog=master;"); SqlCommand cmd = new SqlC... 阅读全文
posted @ 2007-10-04 06:27 迷你软件 阅读(1276) 评论(1) 推荐(0) 编辑
  2007年10月3日
摘要: using System; using System.IO; using System.Drawing; using System.Drawing.Imaging; using System.Text; using System.Collections; using System.Web; using System.Web.UI; using System.We... 阅读全文
posted @ 2007-10-03 21:52 迷你软件 阅读(1030) 评论(1) 推荐(0) 编辑
摘要: 使用FileUpload控件上传图片并自动生成缩略图、自动生成带文字和图片的水印图 本文借助vs2005中自带的FileUpload控件实现图片文件的上传并生成缩略图。 实现过程:选择图片上传成功后,取得已经存在服务器的文件生成缩略图,并且判断是否是图片类型的文件,这个的判断可以在程序中修改,本程序只是判断了“image/bmp”、“image/gif”、“image/pjpeg”... 阅读全文
posted @ 2007-10-03 21:44 迷你软件 阅读(617) 评论(0) 推荐(0) 编辑
  2007年10月2日
摘要: 摘至:http://www.cnblogs.com/kingthy/archive/2007/09/22/902234.html 如果编译以下代码必须将unsafe打开,否则不能编译 using System; using System.IO; using System.ComponentModel; using System.Runtime.InteropServices; namespac... 阅读全文
posted @ 2007-10-02 13:50 迷你软件 阅读(307) 评论(0) 推荐(0) 编辑
  2007年9月28日
摘要: 剪切板与正则表达式测试 拷贝 显示 清空 阅读全文
posted @ 2007-09-28 22:17 迷你软件 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 让IE可以编辑 在用IE打开一个网页,在地址栏中输入如下内容,回车。 javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 让网页中的图片转动: 在用IE打开一个网页,在地址栏中输入如下内容,回车。 javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.... 阅读全文
posted @ 2007-09-28 21:54 迷你软件 阅读(293) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页

本网站绝大部分资源来源于Internet,本站所有作品版权归原创作者所有!!如有以下内容:章节错误、非法内容、作者署名出错、版权疑问、作品内容有违相关法律等请及时与我联系. 我将在第一时间做出响应!本站所有文章观点不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。