欢迎访问我的博客 https://javascript.shop

随笔分类 -  ASP.NET(旧)

摘要:原文发布时间为:2008-07-29 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(193) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-03 —— 来源于本人的百度文章 [由搬家工具导入] 原文地址:http://blog.csdn.net/21aspnet/archive/2007/03/25/1540301.aspx 说明:准备出一个系列,所谓精髓讲C#语言要点。这个系列没有先后顺序,不过尽量做到 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(156) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-30 —— 来源于本人的百度文章 [由搬家工具导入] 添加了一个db的类作为了对象数据源: using System;using System.Data;using System.Configuration;using System.Web;using System. 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(175) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-06 —— 来源于本人的百度文章 [由搬家工具导入] Button btn=new Button(); 1、如果用 btn.Enabled=false;是可以防止刷新的,但是不能点击,而且button的外观变成了凹下去的,很难看 2、所以我找到了解决方法。这个方法很好 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(695) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-01 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(167) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-10-31 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(115) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-11-01 —— 来源于本人的百度文章 [由搬家工具导入] 事件的由来 我们继续思考上面的程序:上面的三个方法都定义在Programe类中,这样做是为了理解的方便,实际应用中,通常都是 GreetPeople 在一个类中,ChineseGreeting和 EnglishGr 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(99) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-24 —— 来源于本人的百度文章 [由搬家工具导入] 首先当然要写上using System.Data.SqlClient;//这句要写上 1、建立连接字符串如下: SqlConnection testconn = new SqlConnection("Server= 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(292) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-11-08 —— 来源于本人的百度文章 [由搬家工具导入] <html> <head> <title>js</title> </head> <body><input type="button" name="goto" Value="Back" onClick="histor 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(102) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-24 —— 来源于本人的百度文章 [由搬家工具导入] 单击gridview中的选择按钮跳转到另一个页面的方法: 在gridview的事件中双击 SelectedIndexChanging 这个事件,然后编写跳转程序,如下:protected void GridView 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(554) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-27 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(104) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-30 —— 来源于本人的百度文章 [由搬家工具导入] 可以在detailsview的事件中添加如下语句,即增加一个头,让它在0秒的时候刷新: Response.AddHeader("refresh", "0,url=Default2.aspx"); 完整源码: usi 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(159) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-29 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(101) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-10 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(788) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-01 —— 来源于本人的百度文章 [由搬家工具导入] 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(214) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-02 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(135) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-01 —— 来源于本人的百度文章 [由搬家工具导入] UniqueConstraint uc = new UniqueConstraint("pk", ds.Tables["t1"].Columns["title_id"], true); ds.Tables["t1" 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(333) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-08-01 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(250) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-09-16 —— 来源于本人的百度文章 [由搬家工具导入] 之前论坛有人发过RM版的,容量差不多有10G.现在这个是flash版的,只有1.2G共七部分. 第一部分:http://www.eduxf.com/xiazai/张孝祥javascript教程之一.rar 第二部分 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(223) 评论(0) 推荐(0)
摘要:原文发布时间为:2008-07-25 —— 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using S 阅读全文
posted @ 2017-07-09 15:04 孑孓子 阅读(156) 评论(0) 推荐(0)

欢迎访问我的博客 https://javascript.shop