写写程序,一种成就的感觉

写写程序,一种成就的感觉

导航

上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页

2010年3月2日

摘要: ImageThumbnail.csusing System;using System.IO;using System.Drawing;using System.Drawing.Imaging;public class ImageThumbnail{ public Image ResourceImage; private int ImageWidth; private int ImageHeight... 阅读全文

posted @ 2010-03-02 11:44 hateyoucode 阅读(471) 评论(0) 推荐(0) 编辑

2010年2月27日

摘要: 从webbrowsers说起:wb1.Navigate("http://hi.baidu.com");跳转到这个页面wb1.OleObject.document.getElementByID('username').innerText:='fatkun';//如果知道IDwb1.OleObject.document.getElementsByTagName('input').item(0).cli... 阅读全文

posted @ 2010-02-27 17:00 hateyoucode 阅读(258) 评论(0) 推荐(0) 编辑

2010年2月26日

摘要: SQL对象名无效的解决方法 产生SQL对象名无效的问题大多原因是由于数据迁移导致的,下面我们给出解决方法. 在使用数据库的过程中,经常会遇到数据库迁移或者数据迁移的问题,或者有突然的数据库损坏,这时需要从数据库的备份中直接恢复。但是,此时会出现问题,这里说明几种常见问题的解决方法。 一、孤立用户的问题 比如,以前的数据库的很多表是用户test建立的,但是当我们恢复数据库后,test用户此时就成了... 阅读全文

posted @ 2010-02-26 12:26 hateyoucode 阅读(39925) 评论(0) 推荐(1) 编辑

2010年2月20日

摘要: inc(x,y)var x,y:integer;x:=0;for y:=0 to 100 do  inc(y,2);这样会报错,为什么,我也不清楚,英文文档,看不懂但改成x:=0;for y:=0 to 100 do  inc(x,2); 阅读全文

posted @ 2010-02-20 10:03 hateyoucode 阅读(191) 评论(0) 推荐(0) 编辑

2010年2月2日

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--'ContentAutoPage.asp'用法:<%=ContentPagination(文章内容)%>const maxPagesize = 2000 '设置分页字数function I... 阅读全文

posted @ 2010-02-02 15:12 hateyoucode 阅读(274) 评论(0) 推荐(0) 编辑

2010年1月29日

摘要: <html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>按比例缩放图片</title><script language="JavaScript" type="text/javascript"><!--... 阅读全文

posted @ 2010-01-29 12:01 hateyoucode 阅读(269) 评论(0) 推荐(0) 编辑

2010年1月15日

摘要: #spanmenu #menu1,#menu12如果这样写,一个是#spanmenu 这个下面的,一个直接是menu12这个 阅读全文

posted @ 2010-01-15 17:00 hateyoucode 阅读(209) 评论(0) 推荐(0) 编辑

摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="BackData.aspx.cs" Inherits="Admin_BackData" %><%@ Register Src="../UserControl/CheckAdmin.ascx" TagName="CheckAdmin" TagPrefix="uc1" %&... 阅读全文

posted @ 2010-01-15 13:50 hateyoucode 阅读(591) 评论(0) 推荐(0) 编辑

摘要: 无法声明静态类型“System.IO.Directory”的变量以前看到一个教程,估计是老版的.net下写的,有用到Directory 实例化变量,类似 Directory strDir = null;这在新版的.net中是不被允许的。因为Directory是静态类型的变量了。正如错误信息所提示的:“无法声明静态类型“System.IO.Direct... 阅读全文

posted @ 2010-01-15 10:59 hateyoucode 阅读(4991) 评论(0) 推荐(0) 编辑

摘要: 核心技术:using System.Data.SqlClient;using System.IO;string SqlStr1 = "Server=(local);DataBase=master;Uid=sa;Pwd=";string SqlStr2 = "Exec sp_helpdb";string SqlStr1 = "Server=(local);database='" + this.Dro... 阅读全文

posted @ 2010-01-15 09:38 hateyoucode 阅读(544) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页