提到为了传递数据,需要把作为载体的实体类序列化,好好的找了一些序列化方面的介绍。感觉下面的这个介绍比较容易介绍!...
如有转载请注明出处:http://www.cnblogs.com/flydoos/archive/2012/01/19/2326149.html
...
string err = "";
string str = "";
HttpClient hc = new HttpClient();
...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Net;
...
今天朋友说他的 Serv-U 6.1 想升级到 Serv-U 6.4 。我上网看了一下Serv-U最新版是7.X的,为了保险我先在Vmware上装了一个Serv-U 6.1,但是当我想升级Serv-U 7.X的时候我发现Serv-U 7.X的变化简直太大了,不仅界面完全更新,配置文件也全都不一样了。。。没时间了解新的Serv-U,只好按朋友说的更新到Serv-U 6.4。
在虚拟机上测试通过后,给朋友成功地更新了Serv-U,记录一下步骤:
1、打开Serv-U的域管理,将用户域的存储状态从"存储于注册表中"改为"存储于.ini文件中"。
... protected void Page_Load(object sender, EventArgs e)
{
string sAdd = "186868";
string sTmp = "";
...
byte[] data = new byte[4];
System.Security.Cryptography.RandomNumberGenerator.Create().GetNonZeroBytes(data);
uint uRan = BitConverter.ToUInt32(data, 0).ToString();
<script type="text/javascript">
function $3(id) {
return document.getElementById(id);
}
document.onkeydown = function enterToTab() {
//case 38: objUp();break;
...
Excel列字母和数字的转换
网上看的,收藏备用
//用于excel表格中列号字转成数字,返回的列号索引从1开始
public int ToIndex(string columnName)
{
if (!Regex.IsMatch(columnName.ToUpper(), @"[A-Z]+"))
...