 |
|
|
 |
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
I run this coding in my local system but it is giving error message what can i do for running this
A.Johnney
|
| Sign In·View Thread·PermaLink | 1.83/5 (5 votes) |
|
|
|
 |
|
|
Pls Help me Emergently
HTMLWYSIWYG Editor Using ASP/VBScript/JScript (IE editing)
like this page
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | 1.75/5 (4 votes) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | 1.33/5 (3 votes) |
|
|
|
 |
|
|
i need this code for "get selected text of an html page" please send for me "empty_bxt@yahoo.com" thank you very much
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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!
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Just type view-source:page url into the web browser.
http://msdn.microsoft.com/library/default.asp?url=/workshop/networking/predefined/view-source.asp
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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/
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
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.
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
;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.
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
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
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |