storing html pages in a server from VB application
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hi I would like to know how can I make an html page in a VB application. The HTML page has to eventually be stored in a intranet server. Thank you Ehsan Behboudi
hi You can have your HTML content in a variable name sTemp. The insert this code where you want to create the HTML page. Here sTargetFolder is the path where the HTML files resides and concat test.html to that path. Then print that sTemp variable then close. Now check your folder. Open sTargetFolder & "test.html" For Output As #1 Print #1, sTemp Close #1 Hope this will help. regards GV