Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I successfully logged into the admin of a web site, this page contains multiple pages corresponding to each page has its own URL, I want to collect information on one page, I parse the page in the program the URL to get its source code, However, the information inside the data does not show up, use HTML tags preview page only shows this framework, information is not displayed in the browser to the URL can be displayed properly. How do I get information on this page.
Posted

:doh: which algorithm have you used to encrypt your question? ;)

Really, to get an answer, you need to clarify what are you trying to do and what is your problem.
 
Share this answer
 
Comments
[no name] 8-Oct-10 5:33am    
lol :)
gemeite 8-Oct-10 5:48am    
Hello, my friend
I'm sorry maybe I did not express clearly the meaning of my English is not good
Me into a back office web site, this site contains several pages, each page has its own corresponding URL, I want to collect information on one page, I parse the page in the program's URL, to get it the source, but the page does not show the information data, preview the page using HTML tags, the results show only the framework of this page, information is not displayed. Open the URL with a browser can be displayed properly. How do I get information on this page? Well know what I mean?
Looking forward to your reply
Sauro Viti 8-Oct-10 6:04am    
The web site you are working on is realized using plain HTML? From what you are saying, I suspect that there is an embedded object in the web page, for instance a flash player application, and that such object do the job programmatically (for instance getting the informations to show from a database connection).
Try this: open the web page on your browser and save it to your HDD as HTML file (you get too a folder with all the objects embedded in the page). Then open the HTML file with notepad and have a look for its structure.
[no name] 8-Oct-10 6:23am    
if you want to download a flash file from a page or something like this?
make a new html page on your desktop, go into the source of the page with the flash on it, do a Find for .swf, copy the link "www.somepage.com/somefolder/someflash.swf" for example.
then make on your html page on your desktop the same link:
<pre><a href = "www.somepage.com/somefolder/someflash.swf"> download flash </a></pre>
save the html page, open in browser, right click 'download flash' and press 'Save Target As'
if you want to download a flash file from a page or something like this? make a new html page on your desktop, go into the source of the page with the flash on it, do a Find for .swf, copy the link "www.somepage.com/somefolder/someflash.swf" for example. then make on your html page on your desktop the same link:

<a href = "www.somepage.com/somefolder/someflash.swf"> download flash </a></pre>


save the html page, open in browser, right click 'download flash' and press 'Save Target As'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900