上一页 1 2 3 4 5 6 7 ··· 11 下一页
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-04-20 10:32 火精灵 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 01.//中文转为UNICODE字符 02. 03.string str = "中文"; 04. string outStr = ""; 05. if (!string.IsNullOrEmpty(str)) 06. { 07. for (int i = 0; i < str.Length; i++) 08. { 09. //将中文字符转为10进制整数,然后转为16进制unicode字符 10. outStr += "http://www.cnblogs.com/your568/admin/file://u/" + ((int) 阅读全文
posted @ 2011-03-25 13:59 火精灵 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 先在画板上裁剪要导出的图片,然后在文件里选择存储为WEB或者其他设备格式 阅读全文
posted @ 2011-03-25 08:24 火精灵 阅读(415) 评论(0) 推荐(0) 编辑
摘要: coolite 版本是1.0.0.19823,以下是页面截图GridPanel.aspx页面代码<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridPanel.aspx.cs" Inherits="GridPanel" %><%@ Register Assembly="Ext.Net" Namespace="Ex... 阅读全文
posted @ 2010-05-14 16:47 火精灵 阅读(2009) 评论(1) 推荐(0) 编辑
摘要: 建表USE [test]GO/****** 对象: Table [dbo].[InsertTest] 脚本日期: 04/30/2010 16:47:55 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[InsertTest]([LsID] [int] NOT N... 阅读全文
posted @ 2010-04-30 16:47 火精灵 阅读(617) 评论(0) 推荐(0) 编辑
摘要: create FUNCTION f_Cid(@ID bigint)RETURNS @t_Level TABLE(ID bigint,Level int)ASBEGINDECLARE @Level intSET @Level=1INSERT @t_Level SELECT @ID,@LevelWHILE @@ROWCOUNT>0BEGIN SET @Level=@Level+1 INSERT ... 阅读全文
posted @ 2009-10-27 19:55 火精灵 阅读(169) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We... 阅读全文
posted @ 2009-03-17 13:53 火精灵 阅读(485) 评论(0) 推荐(0) 编辑
摘要: 常规函数   javascript常规函数包括以下9个函数:   (1)alert函数:显示一个警告对话框,包括一个OK按钮。   (2)confirm函数:显示一个确认对话框,包括OK、Cancel按钮。   (3)escape函数:将字符转换成Unicode码。   (4)eval函数:计算表达式的结果。   (5)isNaN函数:测试是(true)否(false)不是一个数字。   (6)p... 阅读全文
posted @ 2009-02-14 12:05 火精灵 阅读(253) 评论(0) 推荐(0) 编辑
摘要: http://www.laolang.cn/category-9-2.htmlhttp://uuyi.blogbus.com/ 阅读全文
posted @ 2009-02-14 09:33 火精灵 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 网站原型策划利器:AxureRP-Prorn原文网址:http://www.laolang.cn/show-848-1.html 阅读全文
posted @ 2009-02-14 09:31 火精灵 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页