How to remove a control (ie textbox) from custom class

A

anr

Hi,

i have created a class with a sub, which removes a control
from the original page...

for example, in the original page:

dim usertextbox as new textbox
usertextbox.id = "TEXTBOXIE"
form1.controls.add(usertextbox)

in the class:
public sub DeleteTextBox
dim pagetextbox as textbox
pagetextbox = page.findcontrol("TEXTBOXIE")

if not pagetextbox is nothing then
page.controls.remove(pagetextbox)
end if
end sub


the code in the class doesn't work... somebody can help me??
thx for the help! :D
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top