ASP Contents.Remove মথড

Application অবজেক্ট রেফারেন্স হান্ডবুক

Contents.Remove মথড কনটেন্টস সংগ্রহ থেকে একটি প্রক্রিয়া মুছে দেয়

বিন্যাস

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 />")
next
%>

আউটপুট:

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 />")
next
%>

আউটপুট:

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 />")
next
%>

আউটপুট:

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 />")
next
%>

আউটপুট:

test1=First test
test3=Third test

Application অবজেক্ট রেফারেন্স হান্ডবুক