I have this CGI Application made in VB that send text (HTML code) to the standard Output (Screen) but I would like to output to a specific frame.... can it be done?
Printable View
I have this CGI Application made in VB that send text (HTML code) to the standard Output (Screen) but I would like to output to a specific frame.... can it be done?
For example, I have this code in my module:
I guess that if I provide the frame's handle instead of STD_OUTPUT_HANDLE then I could write to that specific frame instead of creating a full screen page.Code:Public Const STD_INPUT_HANDLE = -10&
Public Const STD_OUTPUT_HANDLE = -11&
hStdIn = GetStdHandle(STD_INPUT_HANDLE)
hStdOut = GetStdHandle(STD_OUTPUT_HANDLE)
please help!
Use the scripting component and use vbscript (the tag elements INNERHTML and INNERADJACENTHTML INNERTEXT INNERADJACENTTEXT i think the names are correct)
DocZaf
{;->
I need my application to be usable in IE and Netscape as well, isn't VB Script only for IE ?