What is equivalent property of Window.document in vb.net?
Hi All,
What is equivalent property of Window.document in vb.net?
Window.document it is the property in vb 6.0.What is equivalent property in vb.net?
in vb.net Web browser.document property is available,but I want Window.document equivalent property in vb.net.
Thanks,
Re: What is equivalent property of Window.document in vb.net?
I have been working with vb6.0 for some years, but do not remember a "Window.document" property. Did you mean "window.document of Asp 3.0 (or vbScript)"? And did you mean how to translate it in Asp.Net? If so, look at Page object.
By the way, from Asp3.0 to Asp.net, you can really have a hard time. But you're lucky, nowaday, as you couls switch to "Modern Asp Net" using RazorEngine. It will be less painful.
In case I spotted it correctly, there is a forum dedicated to Asp Net:
http://www.codeguru.com/forum/forumdisplay.php?f=15
Re: What is equivalent property of Window.document in vb.net?
Same here, been working with VB6 for years and never heard of a window.document property.
If the post above does not help then you should explain what it is you are trying to do in a way that will allow us to offer proper advice.
Re: What is equivalent property of Window.document in vb.net?
Hi,
Are you refering to VBA?
Or maybe you had a reference to the Word com object.
vba ex:
Code:
ActiveWindow.Document.Close
Curt