
C#
bookseas
这个作者很懒,什么都没留下…
展开
-
验证码 生成变形的文字
using System;using System.IO;using System.Web;using System.Web.UI;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;namespace Mis.Pages{ public class think_test:Syste转载 2008-02-12 18:06:00 · 809 阅读 · 0 评论 -
对虚拟目录的操作
一、查看虚拟目录是否存在 private bool IsExitesVirtualDir(string virtualdirname) { bool exited =false; DirectoryEntry _entry = new DirectoryEntry("IIS://localhost/W3SVC/1/Root"); DirectoryEntries _entrie转载 2008-02-13 18:51:00 · 400 阅读 · 0 评论 -
Global中使用线程隔时执行一项任务
using System;using System.Collections;using System.ComponentModel;using System.Web;using System.Web.SessionState;using DataBase;using System.Data.SqlClient;using System.Web.Security;using System.IO转载 2008-02-13 18:30:00 · 395 阅读 · 0 评论 -
c#文件操作(二)
一.读取文本文件 /// /// 读取文本文件 /// private void ReadFromTxtFile() { if(filePath.PostedFile.FileName != "") { txtFilePath =filePath.PostedFile.FileName; fileExtName = txtFilePath.S转载 2008-02-13 18:46:00 · 377 阅读 · 0 评论 -
C#中的文件操作 (一)
C#追加文件 StreamWriter sw = File.AppendText(Server.MapPath(".")+"//myText.txt"); sw.WriteLine("追逐理想"); sw.WriteLine("kzlll"); sw.WriteLine(".NET笔记"); sw.Flush(); sw.Close(); C#拷贝文件 string OrignFile,New转载 2008-02-13 18:35:00 · 388 阅读 · 0 评论 -
C#.NET 中的类型转换
C# 出来也有些日子了,最近由于编程的需要,对 C# 的类型转换做了一些研究,其内容涉及 C# 的装箱/拆箱/别名、数值类型间相互转换、字符的 ASCII 码和 Unicode 码、数值字符串和数值之间的转换、字符串和字符数组/字节数组之间的转换、各种数值类型和字节数组之间的转换、十六进制数输出以及日期型数据的一些转换处理,在这里与大家分享—— 1. 装箱、拆箱还是别名 许多 C#.NET转载 2008-02-13 18:53:00 · 388 阅读 · 0 评论 -
用C#把文件转换为XML
using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.IO;using System.Xml; namespace MyWindows{ /// /// 这个示例演示如何把Office文件编码为xm转载 2008-02-13 18:48:00 · 466 阅读 · 0 评论 -
C#函数实现的小功能
C#中Split分隔字符串的应用 1、用字符串分隔: using System.Text.RegularExpressions; string str="aaajsbbbjsccc";string[] sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase);foreach (string i in sArray) Response.转载 2008-02-12 18:57:00 · 383 阅读 · 0 评论 -
汉字转拼音缩写的函数以及其他函数
/**//// /// 清空指定页面上所有的控件内容,包括TextBox,CheckBox,CheckBoxList,RadioButton,RadioButtonList。但是不清 /// 除如ListBox,DropDownList,因为这样的控件值对当前页面来说还可以用,一般这些控件里都是保存的字典数据。 /// Auth转载 2008-02-12 18:44:00 · 605 阅读 · 0 评论 -
asp.net生成高质量缩略图通用函数(c#代码),支持多种生成方式
在网站开发时,生成缩略图是一个非常常见和实用的功能.以前在asp里只能借助com组件实现,现在在.net里可以利用框架的强大的类库轻松实现.下面帖出完整的代码(带详细注释),参考了网上的一些文章及.net sdk相关内容.QQROOM网络家园的图片上传用到了所有的4种生成方式. /// /// 生成缩略图 /// /// 源图路径(物转载 2008-02-13 18:55:00 · 441 阅读 · 0 评论