自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

自己的BLOG自己造

---------------------------想做就做

  • 博客(12)
  • 收藏
  • 关注

原创 ajax的用法

        using System;namespace tts{ ///  /// Person 的摘要说明。 ///  public class Person {  public Person()  {   //   // TODO: 在此处添加构造函数逻辑   //  }  private string _name;  public string Name   {   get

2007-03-30 10:47:00 806

原创 用户控件用法

namespace useControlTes.NewFolder1{ using System; using System.Data; using System.Drawing; using System.Web; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls;  //public delegate v

2007-03-19 15:02:00 996 2

原创 获得客户IP

 private void Page_Load(object sender, System.EventArgs e)  {   Label2.Text = getIp();   HttpBrowserCapabilities bc = new HttpBrowserCapabilities();    bc = Request.Browser;   string xitong = "你的操作系统为

2007-03-19 12:59:00 656

原创 图片以二进制上传到Sql 数据库

using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebContr

2007-03-19 11:51:00 1063

原创 树代码

  private void BuildTree()  {   TreeView1.Nodes.Clear();      ComponentArt.Web.UI.TreeViewNode tnode =new ComponentArt.Web.UI.TreeViewNode();     tnode.Text = this.ddlYear.SelectedValue+"年树";   tnode.

2007-03-19 10:49:00 935

原创 截断指定长度的字符串

public static string GetSubString(string str, int length)  {   string temp = str;   int j = 0;   int k = 0;   for (int i = 0; i    {    if (Regex.IsMatch(temp.Substring(i, 1), @"[/u4e00-/u9fa5]+"))   

2007-03-19 10:42:00 755

原创 web中框架间的调用

 parent.main.location.href = "Desktop.aspx"; parent.frames["main"].document.location.href = "Desktop.aspx"; 

2007-03-16 09:53:00 650

原创 ajax方法

using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using

2007-01-11 17:25:00 1445

原创 sql的另类插入方法

declare @userName varchar(20)set @userName =  张三declare @userpwd varchar(20)set @userpwd= 123declare @userinfo varchar(20)set @userinfo = 明天insert into login (UserName,UserPwd,UserInfo) select @

2007-01-04 11:21:00 1079

原创 net2005中DataGridView的用法

  一、 DataGridView的用法。在datagridview中编辑列,增加一列。把页眉文本设置为要显示的字段的汉字,如名字//取得一个数据集合            Runtop.SqlDb.SqlDB ObjDb = new Runtop.SqlDb.SqlDB();            string sqlstr = "select * from Member";

2006-11-09 15:24:00 2624

原创 c#获得汉字的第一个字母,方便用拼音码查数据

//我编程时要用到查询测字拼音首字母的功能,于是从网上搜//但发现大部分都是将汉字的内码转换成区位码,然后得出拼音的首字母//这个方法好是好,只是许多GB2312编码以外的汉字查不到,于是我想了这个办法,我觉得代码很短,但很实用//而且GBK字符集的汉字都能查,希望大家多提意见 public class hzpy {  public hzpy()  {   //   // TODO: 在此处添加构

2006-11-09 15:19:00 1684

原创 javascript事件和对象绑定

alert("请不要离开"); document.getElementById("txt1").focus(); for后面为要绑定的对象,event为该对象触发下面代码的事件

2006-11-09 15:14:00 715

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除