How can get wikipedia contents to my webpage without using my host space?
GET HOSTING FOR 1 Cent! USE CODE: JURY
I want to put wikipedia content on my web page.
but i have few MB space only.
How can i put the contents from wikipedia like rss or any other method
please help me
Using in asp or asp.net (C#)
Related Blogs
- Shakeup at Wikipedia in Wake of Porn Purge « Xenophilia (True …
- Strategies for Opening Up Content: A Special Issue of Research …
- Recently Released: Best Free Reference Web Sites 2010, Twelfth …
- New Mobile Web Site: University of Central Oklahoma « ResourceShelf
- Database: Legal Research: New PACER Web Site Now Online, A …
- How does Wikipedia not get flooded with spam indefinitely and …
- CNC machine tool repair five-step method of exploration in place …
- New Release Page Updated! | Literary Escapism
- Monday Marketing Term: Keywords [SEO, SEM & Content] | The …
- Importance Of Content In Your Website | SEO Marketing Toronto
- The Facebook-ing of Web Content | Information Optimized Blog
- CSS Friendly Menu Control in ASP.NET 4.0 « Abhijit's World of .NET
- Web Design and Fitness – Jeffrey Zeldman Presents The Daily Report
- Web Site Hosting vs Personal Backup Hosting | Web Hosting Talk News
- Enhancing Your Content Management System with Plugins | Web …
- Web Design Trends for 2010 | Webdesigner Depot
- How To Decorate Any Web Page With Preferred Color Schemes | Free …
- ! Tips Stomach cancer cured by method of www.divinemedicure.com …
- YouTube launches 5 Year Anniversary Celebration Page :: Inside the …
- Wikipedia's Wales Scales Back Founder Flag After Angering Editors …
copy to an external drive ……..floppy, cd, thumb drive and then copy from that medium to your webpage
I think you can make a reference on your webpage to an article on wikipedia and tag it as a link anyone can click on the link and go there. I think.
One way to do this is to put the article you want to display in a inline frame
The name of the tag is iframe
You first need to have atricle URL then you can put this code in the desired part of your web page
Example :
Wikipedia Article
Hope it helps.
OK, since you mentioned ASP, I will assume that you have decent VBScript skills. What you want to do is have your server retrieve the Wikipedia article, then write it out to your own page. Create an ASP file with this code:
< %
Dim strWikiUrl
Dim strWikiPage
' This next line is the article you want to retrieve:
strWikiUrl="http://en.wikipedia.org/wiki/London_Bridge"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", strWikiUrl, false
xmlhttp.send ""
strWikiPage = xmlhttp.responseText
set xmlhttp = nothing
response.write strWikiPage
>%
So what this code does is to make an HTTP request to retrieve the contents specified by the URL in strWikiUrl. If you want to customize it, you’ll have to parse the string and make whatever tweaks you want.
You can go to a YouTube video, and on the right hand side of it there is normally somewhere that says “Embed:” copy the text next to that, and paste it into MySpace.