Feb 26, 2003 #1 latha2k1 Programmer Feb 1, 2003 17 IN Hi, Is it possible to connect VB and ASP thru codings? How can we pass values from VB to ASP? If possible please send me the codings. Thank You.
Hi, Is it possible to connect VB and ASP thru codings? How can we pass values from VB to ASP? If possible please send me the codings. Thank You.
Feb 26, 2003 #2 arst06d Programmer Nov 29, 2002 324 drop a browser control onto your form and set the target web page Me.WebBrowser1.Navigate "http://www.url.com" if you want to pass values, do it on the query string Me.WebBrowser1.Navigate "http://www.url.com?item1=value1" Upvote 0 Downvote
drop a browser control onto your form and set the target web page Me.WebBrowser1.Navigate "http://www.url.com" if you want to pass values, do it on the query string Me.WebBrowser1.Navigate "http://www.url.com?item1=value1"