I have created and opened and executed a task on an object in my asp code like below
set obj = Server.CreateObject("....")
obj.Open (... , ...)
obj.Exec (task1)
I need the user to be able to click a button or perform a keystroke that will execute "task2" on that same object. I am having problems figuring out how to do this. Can anyone help me with this?
Thanks in advance
set obj = Server.CreateObject("....")
obj.Open (... , ...)
obj.Exec (task1)
I need the user to be able to click a button or perform a keystroke that will execute "task2" on that same object. I am having problems figuring out how to do this. Can anyone help me with this?
Thanks in advance