ASP Key 屬性
asp key 屬性

key 屬性在 dictionary 對象中為已有的 key 設(shè)置新值。
語法
dictionaryobject.key(key)=newkey
參數(shù) | 描述 |
---|---|
key | 必需的。需修改的 key 的名稱。 |
newkey | 必需的。key 的新名稱。 |
實(shí)例
<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "re","red"
d.add "gr","green"
d.add "bl","blue"
d.add "pi","pink"
d.key("re")="r"
response.write("the value of key r is: " & d.item("r"))
%>
輸出:
the value of key r is: red
dim d
set d=server.createobject("scripting.dictionary")
d.add "re","red"
d.add "gr","green"
d.add "bl","blue"
d.add "pi","pink"
d.key("re")="r"
response.write("the value of key r is: " & d.item("r"))
%>
輸出:
the value of key r is: red

相關(guān)文章
- ASP 使用 CDOSYS 發(fā)送電子郵件
- ASP ASPError 對象
- ASP Drive 對象
- ASP AdRotator
- ASP 快速參考
- ASP Write 方法
- ASP Attributes 屬性
- ASP Name 屬性
- ASP Move 方法
- ASP CreateTextFile 方法
- ASP RemoveAll 方法
- ASP IsClientConnected 屬性
- ASP Status 屬性
- ASP Contents 集合
- ASP Lock 和 Unlock 方法
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP CodePage 屬性
- ASP Abandon 方法
- ASP GetExtensionName 方法
- ASP OpenTextFile 方法