- 博客(40)
- 收藏
- 关注
原创 js 弹出一次窗口
var open=document.cookie; var date=new Date(); if (open.indexOf("open")<0) { window.open("ah.aspx"); document.cookie="open=true;expires="+date.setTime(date.getTime()+24*3600*1000).toGMTStrin...
2010-01-25 10:50:37
220
ipchange
public string ipChange(uint ip) { string result=""; uint temp; for (int i = 3; i >= 0; i--) { te...
2009-11-23 21:00:01
293
js触发.net验证控件
Page_IsValid 检验页面中的所有输入是否都合法,返回布尔值Page_Validators 当前页面中所有验证控件所形成的一个数组Page_ValidationActive 为一个布尔值,表明是否执行验证功能,设置为false则关闭验证功能。Isvalid 该属性验证客户端的输入是否合法 ValidatorEnable(val, enable) 该方法将某个验证控...
2009-09-22 14:51:17
214
原创 C# excel
using System;using System.IO;using System.Text;using System.Data;using System.Reflection;using System.Diagnostics;using System.Collections;//using cfg = System.Configuration;nam...
2009-09-17 13:09:24
126
原创 遍历类的属性
Response.Write(getProperties(l1.Quote)); //项目中的代码。这样也没有遍历所有的 属性的属性吧,, public string getProperties<T>(T t) { string tStr = string.Empty; if (t == null) { ret...
2009-08-12 11:23:10
116
一个计算机学习网站
在准备一个计算机学习网站 www.jsjxy.com.cn 大多数人,不管是读大学还是在培训机构,计算机的专业知识主要还是来自于自已自学,在学习的过程中,找到好的教程是非常重要的一件事, 在浩渺的网络中寻找的时候,很容易迷失方向,而且网上好多教程都是东一篇西一篇的,非常的不系统。所以就决定做一个这样的网站,把好的系列教程搜集起来, 以方便后面的同学学习,计算机学院是一个专业的免费的计...
2009-08-05 15:37:49
377
原创 SqliteHelper
using System;using System.Collections.Generic;using System.Text;using System.Data.SQLite;using System.Data;namespace DB{ public class SqliteHelper { /// <sum...
2009-07-27 14:46:00
107
网址收藏
http://www.cnblogs.com/artech/archive/2007/02/26/656901.html 我的WCF之旅(1):创建一个简单的WCF程序 一步一步学Silverlight 2系列(2):基本控件 http://www.cnblogs.com/Terrylee/archive/2008/03/07/Silverlight2-step-by-...
2009-07-23 14:50:38
136
。net常用工具
ildasm:反编译.net程序; ilasm:编译il代码; Reflector:查看.net程序源码、程序集间的依赖关系; Xenocode Fox 2007:由.net程序生成.net工程; PEBrowseDbg:动态调试.net程序; WinDbg,OlleyDbg:调试分析程序; MASMPlus:查看编写编译汇编代码; ...
2009-07-23 14:48:54
112
asp生成Excel
<!--#include file="Cls\ExcelControl.asp"--><!--#include file="Cls\ExcelControl.asp"--><% Dim ObjExl,AdoRs Set ObjExl=New ExcelMarker Set AdoRs=con.Execute("select * F...
2009-07-23 14:48:03
181
原创 c#生成Excel
using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;usi...
2009-07-23 14:45:03
189
原创 C#操作Word!
using System;using System.ComponentModel;using System.Data;using System.Windows.Forms;using Word = Microsoft.Office.Interop.Word;namespace ImportExportToOffice{ public class Imp...
2009-07-23 14:44:02
112
原创 验证控件网页代码分析2
还有一个子程序是更新整个页面的验证状态://更新整个页面的验证状态function ValidatorUpdateIsValid(){ Page_IsValid = AllValidatorsValid(Page_Validators);}//检查所有验证控件,一个未通过,就返回不通过function AllValidatorsValid(validators){ if ((typeof...
2009-07-23 14:43:01
183
原创 验证控件网页代码分析
如果我们在文本框中什么都没有输入,直接点击按钮,则激发Button1的onclick事件,执行javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;Button1&quot;, &quot;&quot;, true, &quot;&quot;, &...
2009-07-23 14:38:07
267
js获取后台数据代码 Ajax
function ProcessResponse() { if (objRequest.readyState == 4) { if (objRequest.status == 200) { //remark:兼容IE、Firefox var xml = objRequest...
2009-07-23 14:36:40
261
原创 ASP.Net 向xml文件中添加数据(insert操作)
try { XmlDocument doc = new XmlDocument(); string filename = Server.MapPath(".//XML//User.xml"); doc.Load(filename); XmlNode root...
2009-07-23 14:33:13
207
xml操作
using System;using System.Xml;using System.Collections.Generic;using System.Text;namespace janyo.io{ public class XmlUtility { private static string xmlfilename=""; ...
2009-07-23 14:32:14
110
ip地址转换
public String getIp(long ip10) { String ip = ""; long temp = 0; for (int i = 3; i >= 0; i--) { temp = ip10 / (long)Math.Pow(256, i) % 256; ...
2009-07-23 14:30:29
189
原创 BASE64加密解密
string base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";//编码后的字符集 int[] base64DecodeChars = new int[] { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1...
2009-07-23 14:28:51
115
winform Splash加载窗口
static ApplicationContext context; /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { Applicati...
2009-07-23 14:28:08
181
原创 C#实现快捷键(系统热键)响应
C#实现快捷键(系统热键)响应在应用中,我们可能会需要实现像Ctrl+C复制、Ctrl+V粘贴这样的快捷键,本文简单介绍了它的实现,并给出了一个实现类。(1)建立一个类文件,命名为HotKey.cs,代码如下:using System;using System.Collections.Generic;using System.Runtime.InteropServices;...
2009-07-23 14:27:08
499
原创 WinForm的一些常用技巧
在任务栏不显示 将WinForm的ShowInTaskbar属性设置为false 不显示边框和窗口标题formborderstyle ACCESS表名 DataTable schemaTable = oconn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new Object[] { null, nu...
2009-07-23 14:22:51
189
原创 Table对象集合
Table对象集合Table对象:表示HTML文档中的表,对于文档中每个<table>标记,浏览器都创建一个Table对象.集合 描述 cells[]获取包含表格中所有单元格的数组rows[]获取包含表格中所有行的数组tBodies[]获取包含表格中所有tbody的数组Table对象属性 border...
2009-07-23 14:21:32
130
原创 浏览器兼容笔记
document的compatMode指示当前文档的盒子模型。有两个值:“BackCompat”和“CSS1Compat”。当文档中用 DOCTYPE明确声明了当前文档是XHTML格式时,这个属性将是“CSS1Compat”。否则,是“BackCompat”。 compatMode影响CSS盒子的呈现形式,对在精确的UI定位中需要特别注意。“CSS1Compat”是按符合W3C标...
2009-07-23 14:20:25
160
IE屏蔽鼠标右键及快捷键方法
<html> <script>function KeyDown(){ //屏蔽鼠标右键、Ctrl+n、shift+F10、F5刷新、退格键 //alert("ASCII代码是:"+event.keyCode); if ((window.event.altKey)&& ((window.event.keyCode==37)|| ...
2009-07-23 14:18:29
331
webServices 调用股票报价
Endpoint: http://www.webxml.com.cn/WebServices/StockInfoWS.asmxDisco: http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?discoWSDL: http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?wsdl 输入参数:t...
2009-07-23 14:17:01
168
JavaScript Key Code
keycode 0 =keycode 1 =keycode 2 =keycode 3 =keycode 4 =keycode 5 =keycode 6 =keycode 7 =keycode 8 = BackSpace BackSpacekeycode 9 = Tab Tabkeycode 10 =keycode 11 =keycode 12 = Clear...
2009-07-23 14:15:14
216
原创 Flex中如何利用Array.filter()事件从一个数组中移除重复项目的例子
<!-- Google Adsense Begin<div style="margin: 3px; float: right;"></div>Google Adsense End --><!--content with more link-->和前面的Flex中如何通过filterFunction属性对XMLLi...
2009-07-23 14:14:21
183
原创 javascript 属性 备忘
属性 描述 closed 获取引用窗口是否已关闭。 defaultStatus 设置或获取要在窗口底部的状态栏上显示的缺省信息。 dialogArguments 设置或获取传递给模式对话框窗口的变量或变量数组。 dialogHeight 设置或获取模式对话框的高度。 dialogLeft 设置或获取模式对话框的左坐标。 dialogTop 设置或获取模式对话框的顶坐标。 dialogWidth 设...
2009-07-23 14:12:49
111
原创 去除文本中的标签
/// <summary> /// 去除文本中的标签Method to make sure that user's inputs are not malicious /// </summary> /// <param name="text">User's Input</param> ...
2009-07-23 14:10:39
183
asp生成rss代码 加rss标签说明
一份RSS文件的基本架構如下: <rss version="2.0"> <channel> <title>文件抬頭</title> <link>文件網址</link> <description>文件簡介</description>
2009-07-23 14:08:20
165
C#验证码
using System;using System.Drawing;using System.Drawing.Imaging;using System.IO;using System.Web;public partial class CHKCode : System.Web.UI.Page{ protected void Page_Load(object se...
2009-07-23 14:03:57
104
asp 实现输入提示
页面 <input name="key" id="key" type="text" class="input1" size="13" onkeyup="keyupdeal(event);" onkeydown="keydowndeal(event);" onclick="keyupdeal(event);">
2009-07-23 13:58:33
369
原创 des和RSA两种加密方式的例子
static public string RSA_Encrypt(string str_Plain_Text, out string str_Public_Key, out string str_Private_Key) { str_Public_Key = ""; str_Private_Key = ""; UnicodeEncoding Byt...
2009-07-23 13:50:46
349
flex实现图表事件获取数据
首先必须引入 几个包 import mx.charts.events.ChartItemEvent; import mx.charts.series.items.ColumnSeriesItem; private function setMousedata(event:ChartItemEvent):void { var can:HLOCSeries...
2009-03-11 13:18:03
99
flex实现鼠标跟随十字架
效果图 添加侦听事件 canVas.addEventListener(MouseEvent.MOUSE_MOVE,mouseMove); canVas.addEventListener(MouseEvent.CLICK,ShowLabel); 鼠标移动事件private function mouseMove(event:MouseEvent):void {...
2009-03-11 11:00:47
176
Flex调用Socket
private function configureListeners():void { socket.addEventListener(Event.CLOSE, closeHandler); socket.addEventListener(Event.CONNECT, connectHandler); socket.addEventListener(Prog...
2009-03-06 14:33:10
95
Flex调用WebServices
[Bindable] public var arrayCol:ArrayCollection;public function Test():void { //* var webs:WebService=new WebService(); webs.wsdl="http://localhost/Web/...
2009-03-06 12:45:28
108
原创 FLEX全屏功能实现右键菜单
FLEX的全屏功能的实现,光写AS还不够,还需要对JS部分做一些小小改动才行,好在这个改动并不麻烦,有这个需求的朋友可以参考下.另外在 FLEX应用里右键菜单的功能也是很常见的,我在这里也作了一个简单的功能实现,太复杂的小弟暂时还没来得及实践,有朋友实现了也给小弟参考下,在此表示感谢. 好了,先把AS代码贴出来吧: 1. <?xml version="1.0" encod...
2009-03-06 12:29:57
122
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人