Hi Jody. Thanks for the response.
I think perhaps you misunderstood my question.
What I am attempting to do *can not* involve server-side code nor
client-side script .... I have no control over the coding of the
web-application.
I need to write a client-side executable in VB.NET that emulates actions a
user would manually perform when interacting with a browser-page.
This VB.NET EXE would triggers download of a web-page (from a specific URL)
into a browser, then populate some of the controls on the browser-page, but
not submit the page -- just pass it over to the end-user so that they can
finish populating the other controls and submit it themselves.
"Jody Fisher" <jf*****@claytonutz.com.dontspamme> wrote in message
news:Oz**************@TK2MSFTNGP12.phx.gbl...
javascript:window.open(....) -> prepopulate the new page on the server
side ie use an aspx page.
remember that even though asp.net is far smarter than the older cgi apps,
all processing is done server side. Anything that is required on the
client side, you will need to do with client side script
Jody
MCSD.Net
"John A Grandy" <johnagrandy-at-yahoo.com> wrote in message
news:O9**************@TK2MSFTNGP11.phx.gbl... is it possible to write a vb.net code (intended to run on the
client-side) that would invoke an instance of IE, have it download a page from a
certain URL, and then pre-populate some of the controls on that page, before
transferring focus to the browser-page and showing it to the user? (the
user would be responsible for submitting the page.)