ASP.NET中Server对象的方法

2013 年 2 月 16 日3200

欢迎进入.NET社区论坛,与300万技术人员互动交流 >>进入

本文给大家简单介绍一下 ASP.NET 中的 Server 对象的方法,初学者可以当个参照表来用。

urIEncode 将URL字符串编码,语法格式为:

以下是引用片段:

UrlEncode(ByVal String As String)As String

urIDecode 将编码后的URL字符串解码,语法格式为:

以下是引用片段:

UrlDecode(ByVal String As String)As String

MaDPath 取得文件的实际路径,语法格式为:

以下是引用片段:

MapPath(ByVal path As String)As String

HtmlEncode 将字符串编码为HTML数据,语法格式为:

以下是引用片段:

HtmlEncode(ByVal String As String)As String

HtmlDecode 将HTML编码后的数据解码还原为HTML,语法格式为:

以下是引用片段:

HtmlDecode(ByVal String As String)As String

CreateObjectStatic 用ProglD建立COM组件,语法格式为:

以下是引用片段:

CreateObjectStatic(ByVal ProglD As String)As Object

CreateObjectFromClsid 用CLSID建立COM组件,语法格式为:

以下是引用片段:

CreateObjectFromClsid(ByVal Clsld As String)As Object

CreateObject 建立COM组件,语法格式为:

以下是引用片段:

CreateObiect(BVVal Pro~ID As String)AS 0biect

【责编:ivy】

0 0