|
-
Apr 12th, 2000, 05:25 AM
#1
First of all let me say that I'm an experienced VB programmer but I know nothing about programming in VB for the Web. Lets say I wanted to write a VB program that could be executed from the Web that would for example read the text in this post. How would I go about doing that?
-
Apr 12th, 2000, 01:26 PM
#2
Hyperactive Member
I would go on ASP, if you are familiar with VB it should be very easy for you.
In the beginning the universe was created. This has made a lot of people very angry and is generally regarded as a bad idea.
- Douglas Adams
The Hitchhiker's Guide to the Galaxy
-
Apr 12th, 2000, 01:46 PM
#3
Lively Member
Since you are an experienced VB programmer, then you can do all your objects in VB. Call all those objects using server.createobject in ASP. Then you can use all the method and properties in the object for your web page.
-
Apr 13th, 2000, 04:45 AM
#4
Marty, check out Active Server Pages 2.0 Professional from Wrox Press - Here's the link , thats how I learned ASP. You would have no problem at all, trust me. If you use VBScript, then you would realize that it's a stripped version of VB. All your variables are Variant.
Also, I'm working on a VB web site (Message Board particularly) at the moment, and I'd like you to see how it looks. At this time you cannot create your own login, but it should be done by the end of this weekend.
VBGarage
Check out Forum Feedback for explanations why my Message Board look the way it is.
Tell me what you think after all.
By the way, I'm using SQL Server 7.0 as a back end. Everything you would see on the screen is being generated dynamically from the database...
Regards,
-
Apr 13th, 2000, 04:52 AM
#5
Frenzied Member
Hey Serge, that rocks
Harry.
"From one thing, know ten thousand things."
-
Sep 15th, 2002, 03:01 PM
#6
Fanatic Member
Originally posted by Serge
Also, I'm working on a VB web site (Message Board particularly) at the moment, and I'd like you to see how it looks. At this time you cannot create your own login, but it should be done by the end of this weekend.
Ah-ha! UREKA and all that. I am a fairly expirence VBer. I have a dedicated ASP host and am looking to provide a system where members can post pictures and/or stories and have other people (members) leave comments underneath. Perhaps you could help?
-
Sep 19th, 2002, 12:52 AM
#7
Hyperactive Member
hi,
u cud use Microsoft's XMLHttp component to retrieve the html contents of a web site
Dim xmlObj 'as MSXML2.ServerXMLHttp
Dim sUrl 'as String
Dim sHtmlCode 'as String
Set xmlObj=Server.CreateObject("MSXML2.ServerXMLHttp")
sUrl="http://www.vbworld.com"
xmlObj.Open "GET",sUrl,false
xmlObj.Send
sHtmlCode=xmlObj.responseText
nao, sHtmlCode will have the html content of the sUrl
U can parse this string to find the retrieve the necessary content.
Hope this helps..... 
regds,
ashay
"If you should die before me, ask if you could bring a friend."
- Stone Temple Pilots
-
Sep 19th, 2002, 05:17 PM
#8
Fanatic Member
Originally posted by ashay
hi,
u cud use Microsoft's XMLHttp component to retrieve the html contents of a web site
...
nao, sHtmlCode will have the html content of the sUrl
U can parse this string to find the retrieve the necessary content.
Hope this helps..... 
regds,
ashay
Yeah that seems to be the ticket... (feels thick) must admit I am unsertain how I'd apply it. Not even sure if I follow how it works. I guess I'll figure it out... eventually
Hmm, right then .........
-
Sep 20th, 2002, 01:10 AM
#9
Hyperactive Member
Originally posted by Matt_T_hat
Yeah that seems to be the ticket... (feels thick) must admit I am unsertain how I'd apply it. Not even sure if I follow how it works. I guess I'll figure it out... eventually
Hmm, right then .........
Mine was an answer to Martin Liss not urrs......
regds,
ashay
"If you should die before me, ask if you could bring a friend."
- Stone Temple Pilots
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|