Can somebody plzztell me how to open a jsp page using vb6 ?? Thanks in Advance .
Printable View
Can somebody plzztell me how to open a jsp page using vb6 ?? Thanks in Advance .
It seems as if you're talking about a Java Server Page, if so, you'll need a WebBrowser Component.
yes .... the jsp pagw will open in the web browser component only .... i only need to call the url from the vb page
Remember, you may run into problems trying to only run the jsp file - why not open the corresponding webpage that goes to the jsp. It would be better imho.
yes .... but how do i call an html file from vb by click of a button ??
Use the WebBrowser's Navigate / Naivigate2 methods.
can u plzz give me the code ... i dont know how to use objects in vb6 ...
OK, I'll spoonfeed you, if you don't want to even look up the hints I gave.
It helps nothing if you just copy and paste code, and not to do any reasearch through google, this forum's search feature and MSDN. :mad:Code:WB1.Navigate "http://www.whatever.com"
So, if it is not too mch trouble, please copy and paste this code into your project, as I will not design your entire program and add it as an attachment here, for you.