|
-
May 3rd, 2008, 03:03 AM
#1
Thread Starter
New Member
taking HTML as input for VB????
hi all,
how can we take an HTML / XML page as an input in VB?
so that we can further process that?
-
May 3rd, 2008, 06:05 AM
#2
Re: taking HTML as input for VB????
This is not an Application Deployment question...
Reading is the key to the Internet...
-
May 3rd, 2008, 11:38 AM
#3
Re: taking HTML as input for VB????
Thread moved from Application Deployment forum, which is for questions about installing/distributing your software
-
May 3rd, 2008, 12:24 PM
#4
Re: taking HTML as input for VB????
It depends on exactly what it is you want to do and where it's coming from. It's a good idea to post a few more details when asking questions. Post a clear and complete description of what you're doing and what you want and we don't have to guess or assume.
In brief, an XmlReader or XmlDocument will let you read an XML file and an XmlWriter or XmlDocument will let you write one. There's no specific support for HTML code in the .NET Framework so if it's XHTML you could read it as XML or else just read it as plain text and parse it yourself.
Last edited by jmcilhinney; May 3rd, 2008 at 12:27 PM.
-
May 3rd, 2008, 02:29 PM
#5
Re: taking HTML as input for VB????
What do you want to do with the page? If it's going to be HTML and there's the possibility of malformed tags, consider loading it into a string and working to get the values out using regular expressions.
-
May 5th, 2008, 07:28 AM
#6
Thread Starter
New Member
Re: taking HTML as input for VB????
thanx all !
actually i want to develop an application in which i want to take input from Case Studio 2 (its a DB designing tool)
it generates scripts etc, n output is shown in XML and HTML as well
this out put is required for my application as an input
i think i can better take XML rather than HTML......
-
May 5th, 2008, 09:45 AM
#7
Re: taking HTML as input for VB????
XML would be the safer option.
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
|