摘要:
修改配置文件Web.config 阅读全文
摘要:
/// /// 自动建库建表 /// public class OperationSqlFile { SqlConnection sqlCon; SqlCommand sqlCom; String _varFileName =... 阅读全文
摘要:
/// /// 执行sql文件 /// void StartupSQLFile() { /* 以下是osql的一些参数用法: 用法: osql [-U 登录 ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
摘要:
/// 转记录表到模型列表 /// 模型类型 /// 记录表 /// 模型列表 public static List ConvertToModelList(DataTable table) { List result = new List(); if (null == table || 0 == table.Rows.Count) { return result; } foreach (DataRow dr in table.Rows) ... 阅读全文
摘要:
CSS折行样式word-break:break-all;允许单词拆分折行word-break:keep-all;只能在半角空格或连字符处换行。word-wrap:break-word;在长单词或URL地址内部进行换行。 阅读全文
摘要:
1、背景阴影的使用box-shadow:1px 1px 1px 1px #ccccccc inset;说明:第一个参数为水平阴影的大小、第二个为垂直阴影的大小(值可以为负数)、第三个参数是阴影模糊大小、第四个参数是阴影距离大小、第五个为阴影的颜色、第六个为阴影为内阴影(不设置默认为外阴影)。2、文字阴影的使用text-shadow:1px 1px 1px #ccccccc;说明:第一个参数为水平阴影的大小、第二个为垂直阴影的大小(值可以为负数)、第三个参数是阴影模糊大小、第四个参数是阴影距离大小。 阅读全文
摘要:
System.Diagnostics.Process.Start("Explorer.exe", @"C:\Users\gnt-wangt\Documents\Visual Studio 2010Projects\Portal\Portal\Image\Uploads\ToolsOrPlug");第一个参数用什么打开、第二个参数为需要打开文件夹的路径。 阅读全文
摘要:
使指定的控件不能聚焦,让文本框无法填写的方法。onfocus = "this.blur()" 阅读全文
摘要:
C#代码:#region 下载文件 /// /// 下载文件 /// /// 文件存放的物流路径 public void DownloadText(string url) { if (System.IO.File.Exists(url)) { string fileName = Path.GetFileName(url); FileStream fs = new FileStream(url, FileMode.Ope... 阅读全文