Hey,
Can I check a page if an object exists. For example I want to see if document.All(txtExample) exists, before I doe any changes with it.
Mark
Printable View
Hey,
Can I check a page if an object exists. For example I want to see if document.All(txtExample) exists, before I doe any changes with it.
Mark
Never mind my question I found a solution already. In case someone is interessted. I did it as followed:
if (document.All(txtExample))
{
document.All(txtExample).value = strExample
}