2007年6月21日

html base

摘要: 使用base元素为页面所有的连接指定一个基础的URL假设有一个图片的绝对地址: 现在我们插入标签,就可以为页面内的所有连接加上基础URL:加上之后我们只需要指定相对的地址就可以将URL变为http://www.w3schools.com/images/smile.gif 属性 值 描述 ... 阅读全文

posted @ 2007-06-21 16:05 小乔的闺房 阅读(506) 评论(0) 推荐(0) 编辑

GridView相关问题汇总

摘要: '> ' navigateurl=''> protected string MyChange(string s... 阅读全文

posted @ 2007-06-21 15:59 小乔的闺房 阅读(188) 评论(0) 推荐(0) 编辑

2007年6月20日

第四部份 01 MIME Media Types

摘要: 参考地址http://www.iana.org/assignments/media-types/ 阅读全文

posted @ 2007-06-20 09:46 小乔的闺房 阅读(145) 评论(0) 推荐(0) 编辑

2007年6月15日

第三部分 03 使用HTTP GET进行调用

摘要: 一 只需为WebService添加一个属性[ScriptMethod(UseHttpGet = true)]二 WebServiceusing System;using System.Web;using System.Collections;using System.Web.Services;using System.Web.Services.Protocols;using System.Web... 阅读全文

posted @ 2007-06-15 17:19 小乔的闺房 阅读(171) 评论(0) 推荐(0) 编辑

2007年6月14日

第三部分 01 使用ASP.NET AJAX异步调用WebService(全)

摘要: 一 方法和参数[NameSpace]:服务器端Web Service的命名空间。若没有显式命名空间声明,则该部分可以省略 [ClassName]:服务器端Web Service的类名 [MethodName]:定义在服务器端Web Service中的、将要被调用的方法名 param1 param2 … param n:将要调用的方法的参数列表。其中参数的个数、顺序要与Web Service中方法... 阅读全文

posted @ 2007-06-14 14:29 小乔的闺房 阅读(158) 评论(0) 推荐(0) 编辑

2007年6月9日

AutoCompleteExtender

摘要: 一 写在WebService里using System;using System.Web.Services;using System.Data;using System.Collections.Generic;using System.Web.UI.WebControls; [WebService(Namespace = "http://tempuri.org/")][WebServiceBin... 阅读全文

posted @ 2007-06-09 17:47 小乔的闺房 阅读(280) 评论(0) 推荐(0) 编辑

2007年6月8日

浅谈ASP.NET的Postback

摘要: 一 先来学习服务器控件Button里的一个属性UseSubmitBehavior 例如 上面的代码转换成HTML文档后为 知道区别了吧! 二 这篇Blog的主旨就是从方法调用的角度讲述整个程序运行的过程 (1)从HTML被Render到Client端 ... 阅读全文

posted @ 2007-06-08 15:43 小乔的闺房 阅读(482) 评论(0) 推荐(0) 编辑

2007年6月6日

具有验证功能的TextBox

摘要: using System; using System.Web.UI; using System.Web.UI.WebControls; using System.ComponentModel; namespace ZHBase.ZHWebControl { [ToolboxData("")] public class ZHTxtNum : TextBox { ... 阅读全文

posted @ 2007-06-06 13:35 小乔的闺房 阅读(212) 评论(0) 推荐(0) 编辑

第三部分 02 在ASP.NET AJAX应用程序中使用JavaScript异步调用Page的方法

摘要: 第三部分01中我们将方法写在Web服务中,但通常我们会将一些方法写在页面的.cs文件中,那么,如何使用JavaScript异步调用这些方法呢?下面给出解决方案一 Default.aspx.csusing System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;us... 阅读全文

posted @ 2007-06-06 11:03 小乔的闺房 阅读(232) 评论(0) 推荐(0) 编辑

获得指定的QuertString

摘要: Send.aspx 超链接到Get Send.aspx.csusing System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web... 阅读全文

posted @ 2007-06-06 09:16 小乔的闺房 阅读(148) 评论(0) 推荐(0) 编辑

导航