上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using NHibernate;using NHibernate.Cfg;using NHibernate.Criterion;using TCAEntity.Entities;namespace TCABLL{ public class UserPowerBLL : IDisposable { #region Loacl Declaration private ISession data... 阅读全文
posted @ 2013-05-29 21:53 莫等闲也 阅读(592) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 将IList集合转化为DataTable /// </summary> /// <param name="list"></param> /// <returns></returns> public DataTable ToTagInfoDataTable(IList<GkOptim_AddEquipment> list) { DataTable result = new DataTable(); if (list.Cou... 阅读全文
posted @ 2013-05-18 22:50 莫等闲也 阅读(2751) 评论(0) 推荐(0) 编辑
摘要: asp.net默认最大上传文件大小为4096 修改web.config文件可以改变这个默认值解决方法修改 web.config如下<httpRuntimemaxRequestLength="1048576"executionTimeout="3600"/>修改之后,运行程序添加成功! 阅读全文
posted @ 2013-03-25 22:20 莫等闲也 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 共有两种方式,可查看①:数据源.Where(s =>s.Name.IndexOf(参数)>=0 --------意义等同于 like '%张%'s.Name.StartsWith(参数) -------- 等同于like '张%'s.Name.EndWith(参数) -------- 等同于like '%张');②:var query = from product in products where product.ProductName.IndexOf(this.txtProduct.Text.Trim()) >= 0 || 阅读全文
posted @ 2013-03-08 12:53 莫等闲也 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 在oracle数据库中表创建一个可为null的字段username,当添加数据时,这个字段没有赋值,则插入的值是一个null不是空字符串“ ”(一个表中字段可为null,没有数值时便是null,从数据库中取出来的值也为null) 阅读全文
posted @ 2013-03-08 11:22 莫等闲也 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: 将当前页导出到Execl代码如下:View Code /// <summary> /// 将数据导出成列表事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void BtnExport_Click(object sender, EventArgs e) { StringBuilder sb = new StringBuilder(); ... 阅读全文
posted @ 2013-02-25 18:08 莫等闲也 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 代码如下<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SAPShowImage.aspx.cs" Inherits="UOASWeb.UOASSAP.SAPShowImage" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transit 阅读全文
posted @ 2013-02-25 13:43 莫等闲也 阅读(7106) 评论(0) 推荐(0) 编辑
摘要: C# 获取文件的各个时间如下: <ccid_nobr> 属性 功能和用途 Attributes 返回和文件相关的属性值,运用了FileAttributes枚举类型值 CreationTime 返回文件的创建时间 Exists 检查文件是否存在于给定的目录中 Extension 返回文件的扩展名 La 阅读全文
posted @ 2013-01-05 09:54 莫等闲也 阅读(54918) 评论(0) 推荐(1) 编辑
摘要: /// <summary> /// 清空文件夹 /// </summary> /// <param name="dir"></param> public void DeleteFolder(string dir) { foreach (string d in Directory.GetFileSystemEntries(dir)) { if (File.Exists(d)) { FileInfo fi = new FileInfo(d); if (fi.Attributes.ToString().IndexOf("R 阅读全文
posted @ 2012-12-25 23:45 莫等闲也 阅读(2834) 评论(0) 推荐(0) 编辑
摘要: 父窗体调用子窗体: window.frames["c1"].window.childMehtod();子窗体调用父窗体: 使用window.parent或者window.opener var flag = window.parent.checkLeftShow(); 阅读全文
posted @ 2012-12-19 13:23 莫等闲也 阅读(3573) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页