 |
|
 |
I want to implement A VIN decode functionality for US Based site.
There are several sites providing this service. I can send a vin to this site and get VIN decoded but not able to get the result back to my site.
Can you please tell how can I read the result from the OUTPUT page and display it in my site.
I tried your GETHTMLDOURCE.ASP page but it is not working. It does not return the viewsource of page
Please help its URGENT...!
Thanks.
|
|
|
|
 |
|
 |
hi,
i'm trying to retrieve the html contents of a secure page using VB/ Excel macros. Please help me with a sample code if any
|
|
|
|
 |
|
 |
What if the page is password protected? is there a way to still get the page ?
|
|
|
|
 |
|
 |
you probably dont know it but you saved me
|
|
|
|
 |
|
 |
Exactly what I was looking for, Thanks!
|
|
|
|
 |
|
 |
Thanks a lot for this article. I am new in .net and was wondering to get the Source code of a web page.
Actually, from that source code, I got to take some data & store it in an Excel/Access file. I was wondering how to do that. This part must be easy to do in ASP.Net or ca nbe done from your asp page too. If so, can please guide me how to so the same. Data I got to parse searching the HTML tabs & all. That logic I can apply. But the point is, if the logic can be qapplied to this ASP page or nedd to do in ASP.NET or VB.NET is better, I have no idea.
Any guidance is highly appreciated. I really look for help. I need to get data from N number of pages. I though this idea will be beneficial & less time consuming. I hop to get he lp at the earliest.
Thanks
Thanks
Terry
|
|
|
|
 |
|
 |
I run this coding in my local system but it is giving error message what can i do for running this
A.Johnney
|
|
|
|
 |
|
 |
Pls Help me Emergently
HTMLWYSIWYG Editor Using ASP/VBScript/JScript (IE editing)
like this page
|
|
|
|
 |
|
 |
Pls Help me Emergently
HTML WYSIWYG Editor Using ASP/VBScript/JScript (IE editing)
|
|
|
|
 |
|
 |
i tried to run this 2 ASP pages in my local server, but it seems it keep on running ... no output? what is happen, any idea?
Is it the same method if i want do it in ASP.NET ?
thanks
|
|
|
|
 |
|
 |
Hi,
I have a web page and I select some text or pictures on the web page. I need to know how to get only the portion of the HTML source code which has been selected.
Thanks
Reshma
|
|
|
|
 |
|
 |
i need this code for "get selected text of an html page"
please send for me "empty_bxt@yahoo.com"
thank you very much
|
|
|
|
 |
|
 |
Hi ,
When I try to read from an Unicode asp page with XMLHTTP , all the page contetnst Convert to "?" symbol.
Please tell me how can i read UTF-8 Characters from a page using XMLHTTP
|
|
|
|
 |
|
 |
Has anyone figured out how to do this with pages with special characters?
Some guy from Korea came up with a workaround that's listed below, but has anyone found a better way?????
/Bjarki
------------------------
One way is 1. reading it as binary first, 2. save it to a file, 3. read it
again with proper charset in adodb.stream.
sFile = "test.txt"
sURL = "http://localhost/test.asp"
Set objXMLHTTP = CreateObject("MSXML2.serverXMLHTTP.4.0")
objXMLHTTP.Open "GET", sURL, False
objXMLHTTP.Send
set strm1=createobject("adodb.stream")
With strm1
.type = 1
.open
.write objXMLHTTP.responsebody
.savetofile sFile, 2' adSaveCreateOverWrite
.close
End With
set strm2=createobject("adodb.stream")
With strm2
.type = 2
.charset="euc-kr" 'Use any proper charset
.open
.loadfromFile "test.txt"
msgbox .readText
.close
End With
CODE BY--Han Pohwan, Microsoft MVP, Korea
|
|
|
|
 |
|
 |
There is a way to view a source, even if the menu hided and right-click disabled and you have no Windows-enabled keyboard. You can always navigate to the page using "view-source" protocol. See the article (new window) in MSDN about it.
But still, your way is a good way to get a source of document if you need it in ASP
Philip Patrick
Web-site: www.stpworks.com
"Two beer or not two beer?" Shakesbeer
Need Web-based database administrator? You already have it!
|
|
|
|
 |
|
 |
You can also use the context menu button on the keyboard - it's usually only the right mouse button that's blocked. But the best trick is to use Win2K/WinME/WinXP, and type the http:// address in a standard file open dialog, such as notepad.
|
|
|
|
 |
|
 |
Just type view-source:page url into the web browser.
http://msdn.microsoft.com/library/default.asp?url=/workshop/networking/predefined/view-source.asp
|
|
|
|
 |
|
 |
Or just use GNU wget or (my favorite) cURL (curl.haxx.se) or any other HTTP grabber/crawler/spider, etc.
--=#=--=#=--=#=--=#=--=#=--=#=--=#=--=#=--=#=--
Philippe Lhoste (Paris -- France)
Professional programmer and amateur artist
http://jove.prohosting.com/~philho/
|
|
|
|
 |
|
 |
The easiest way is
create a html page with the hyperlink(html source you want)
open your html with browser. and right click on your link, select save target.
|
|
|
|
 |
|
 |
;PThere is an even better way:
If the browser window has no menu, no address bar, and it doesn't let you right click, you can click-n-drag the IE browser icon (the one on the upper left hand side) to the desktop.
When you do this it will create a shortcut, then you can simply open that shortcut and the new browser window WILL have the menu and address bar to let you view the source.
|
|
|
|
 |
|
 |
well I tried that with this website, is it because it is on our school's server. This is what I am trying to find the source for.
http://150.208.140.37/asp_student05/12a-datastore.asp
Can anyone help me? I am the type of person that needs step by step instructions. Like the one that said put that url in notepad. Well after you put in in there what do you save it as and then what, If that is what you do.
Need more info. I am new to this stuff.
Thanks
|
|
|
|
 |
|
 |
It appears that after xp sp2 this no longer works
|
|
|
|
 |