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