- 浏览: 109950 次
- 性别:
- 来自: 广州
最新评论
-
amyasp:
这个这个不用自己写了吧,string.join看看这个
自己写的一个方法(字符串数组转换字符串),可能不是很严谨,以后再改改
文章列表
防止插入重复数据的触发器
- 博客分类:
- SQL server
create TRIGGER trigg_test
ON Admin
instead of insert
as
BEGIN
insert into Admin(pwd)
select pwd from inserted k where not exists(select * from Admin where pwd=k.pwd)
END
插入失败判断返回受影响的行数小于=1
>1 是插入成功
U盘一些不为人知道的使用技巧
- 博客分类:
- 计算机技巧
前几天一直很郁闷,复制东西进去U盘里面,老是显示参数不正确。以前也有这种情况。
在一次偶然的机会,有个朋友(是一个保安来的)拿个MP4上来宿舍叫我帮他下载歌曲。啊?什么?参数不正确,第一反应就以为数据线出现问题,拔出来重新插进去,还是那种情况。(当初以为数据线的问题,来我的宿舍都是这样子)
这一次,他可能等不及了吧,因为他要去赶着值班。跟我说删掉里面几首不好听的歌就行了。我就随手删掉他的说那几首歌。随便拖动几首进去,这时候出现奇迹,居然不出现参数不正确。
正在我高兴之余,同样的情况,参数不正确。查找一下U盘。里面的一开始复制进去的那几首歌曲在里面。为什么后面的几首歌复制不进去呢?
他说再删掉几首 ...
先看一下一般的做法
//{1,1,2,3,5,8,^}求第三十个数的值(一般做法)
protected static int fun2(int n)
{
int sum = 0;
int b = 1;
int a = 1;
if (n==1)
{
return a;
}
else if (n==2)
{
return b;
}
...
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
namespace WuJian.Common
{
/// <summary>
/// 图片处理类
/// 吴剑 2008-07-02 创建
/// 吴剑 2011-01-21 修改
/// </summa ...
一般处理程序
<%@ WebHandler Language="C#" Class="ajaxTest" %>
using System;
using System.Web;
using System.Web.Script.Serialization;
public class Person1
{
public string Name { get; set; }
public string Age { get; set; }
}
public class ajaxTest : IHttpHandler {
...
字符串数组转换为字符串(vs 内置的方法)
- 博客分类:
- .net
string[] str = new string[] { "1", "2", "3", "4" };
string s = string.Join("/", str);
Console.WriteLine(s);
Console.ReadKey();
很感谢那位给我提出意见的朋友,今天我试了一下。果然可以!还有它里面内置一个排序的方法sort。不过,我建议一些初学者自己写方法,不要老是用vs内置好方法 ...
http://www.xue5.com/itedu/201003/403213_5.html
http://www.cssass.com/blog/index.php/2010/808.html
http://www.wolframalpha.com/input/?i=17x^2-16|x|y%2B17y^2%2B150%2F|5x%2Bsin%285y%29|%3C225
一句话说白:设置最短的高度为100%;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="t ...
List<int> list = new List<int>();
list.Add(1);
list.Add(3);
list.Add(4);
int sum = 0;
for (int i = 0; i < list.Count; i++)
{
sum += list[i];
}
Console.WriteLine(s ...
在office2003以后版本没有owc这个组件
本人电脑在此目录下有
C:\Program Files\Common Files\Microsoft Shared\Web Components\11
将它添加引用就OK
ChChart对象属性
type:3D或者柱形图或者饼图
border:是否有边框
hastitle:是否有标题
title:标题
haslegend 是否有关联对象
seriescollection:chchart对象中chseries对象集合
主要原理:
1、两栏或者多栏放置于父窗口(这个是多栏必备的,有点废话)
2、 父容器overflow: hidden(这一条,在IE6和IE7上作用不明显)
3、两栏使用padding-bottom和margin-bottom一正一负相抵,拉抻比较短的那一栏。
示例代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME=&qu ...
/// <summary>
/// 字符串数组转换为字符串(例如:{“12”,“545”}变成12/545)
/// </summary>
/// <param name="str">传入的字符串数组</param>
/// <param name="apart">分隔符,字符串类型</param>
/// <returns></returns>
protecte ...
// 读取XML文件
DataSet ds = new DataSet();
ds.ReadXml(Server.MapPath("CompanyInfo.xml"));
gv.DataSource = ds.Tables[0].DefaultView;
gv.DataBind();
// 修改XML文件
ds.Tables[0].Rows[0]["Name"] = "牛腩有限责任公司";
ds.WriteXml(Server.MapPath("CompanyInfo.xm ...