ASP Contents.Remove विधि
Contents.Remove विधि Contents सेट से एक वस्तु हटाती है。
व्याकरण
Application.Contents.Remove(name|index) Session.Contents.Remove(name|index)
पैरामीटर | वर्णन |
---|---|
name | अद्धिकारिता का नाम |
index | अद्धिकारिता के निर्देशक संख्या |
Application ऑब्जेक्ट के लिए उदाहरण
उदाहरण 1
<% Application("test1")=("First test") Application("test2")=("Second test") Application("test3")=("Third test") Application.Contents.Remove("test2") for each x in Application.Contents Response.Write(x & "=" & Application.Contents(x) & "<br />") अगला %>
आउटपुट:
test1=First test test3=Third test
उदाहरण 2
<% Application("test1")=("First test") Application("test2")=("Second test") Application("test3")=("Third test") Application.Contents.Remove(2) for each x in Application.Contents Response.Write(x & "=" & Application.Contents(x) & "<br />") अगला %>
आउटपुट:
test1=First test test3=Third test
Session ऑब्जेक्ट के लिए उदाहरण:
उदाहरण 1
<% Session("test1")=("First test") Session("test2")=("Second test") Session("test3")=("Third test") Session.Contents.Remove("test2") for each x in Session.Contents Response.Write(x & "=" & Session.Contents(x) & "<br />") अगला %>
आउटपुट:
test1=First test test3=Third test
उदाहरण 2
<% Session("test1")=("First test") Session("test2")=("Second test") Session("test3")=("Third test") Session.Contents.Remove(2) for each x in Session.Contents Response.Write(x & "=" & Session.Contents(x) & "<br />") अगला %>
आउटपुट:
test1=First test test3=Third test