YouTip LogoYouTip

Met Contents Remove Sess

# ASP Contents.Remove Method * * Complete Session Object Reference Manual](#) * * * The Contents.Remove method removes an item from the Contents collection. ## Syntax Application.Contents.Remove(name|index) Session.Contents.Remove(name|index) | Parameter | Description | | --- | --- | | name | The name of the item to be removed. | | index | The index number of the item to be removed. | * * * ## Examples for the Application Object ### Example 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) & "
") next %> Output: test1=First test test3=Third test ### Example 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) & "
") next %> Output: test1=First test test3=Third test ## Examples for the Session Object: ### Example 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) & "
") next %> Output: test1=First test test3=Third test ### Example 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) & "
") next %> Output: test1=First test test3=Third test * * Complete Session Object Reference Manual](#)
← Met Contents Removeall SessMet Abandon β†’