Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
3k views

Convert webpage to image from ASP.NET

I would like to create a function in C# that takes a specific webpage and coverts it to a JPG image from within ASP.NET. I don't want to do this via a third party or thumbnail service as I need the ...
12
votes
6answers
2k views

What's the best “file format” for saving complete web pages (images, etc.) in a single archive?

I'm working on a project which stores single images and text files in one place, like a time capsule. Now, most every project can be saved as one file, like DOC, PPT, and ODF. But complete web pages ...
10
votes
12answers
3k views

“Smart” way of parsing and using website data?

How does one intelligently parse data returned by search results on a page? For example, lets say that I would like to create a web service that searches for online books by parsing the search ...
9
votes
6answers
497 views

data mining - how to identify main content on a webpage

Given a news article webpage (from any major news source such as times or bloomberg), I want to identify the main article content on that page and throw out the other misc elements such as ads, ...
9
votes
5answers
300 views

What algorithms could I use to identify content on a web page

I have a web page loaded up in the browser (i.e. its DOM and element positioning are both accessible to me) and I want to find the block element (or a sorted list of these elements), which likely ...
8
votes
5answers
3k views

javascript to get paragraph of selected text in web page

After highlighting text, I would like to obtain the paragraph in which the selected text resides. var select = window._content.document.getSelection(); Any pointers please?
8
votes
3answers
1k views

Are there any free ways to turn an html page into an image with .net

I want to take html, including the text and images and turn it into one image containing everything. Is there a free way to do it? This is using .net 3.5. See also: Server Generated web ...
7
votes
4answers
976 views

generate image (e.g. jpg) of a web page?

I want to create an image what a web page looks like, e.g. create a small thumbnail of the html + images. it does not have to be perfect (e.g. flash /javascript rendering). I will call use the code ...
7
votes
6answers
2k views

What happens when we refresh a web page?

I was hoping if anyone can answer a fundamental question that I have regarding refreshing of a web page. I have a dotnet webform where a user fills in some details and clicks submit. The code behind ...
7
votes
2answers
9k views

jQuery web page height

Let's say that a web page is twice the height of the browser window (thus there's a scroll bar). How do I retrieve the height of the web page in jQuery?
7
votes
3answers
4k views

How to get a website screenshot in python

What I want to achieve is to get a website screenshot from any website in python. Env: Linux
6
votes
3answers
172 views

How to convert an html webpage to a picture

How to convert an html webpage to a picture like google preview. Is there a Java library permitting this? Is there a command-line argument to call browsers to make them convert a web page into a ...
6
votes
3answers
7k views

How can i get content of web-page

i'm trying to get web-page data in string that than i could parse it. I didn't found any methods in qwebview, qurl and another. Could you help me? Linux, C++, Qt. EDIT: Thanks for help. Code is ...
5
votes
1answer
177 views

firefox warning message

i have a weird issue with firebug with my current javascript code i have a web page with javascript and and jqeury and i get this message: use of getattributenodens is deprecated. use ...
5
votes
4answers
420 views

how to dim your webpage to center your attention on a banner? (dim-bright effects on your webpage)

I was wondering on how this effect is created in certain webpages - On loading the webpage, a banner ad with a close button is displayed as the topmost layer, and the actual webpage is displayed as ...
5
votes
4answers
112 views

Is there a need to test webpages in both Safari and Chrome?

Since both Safari and Chrome use Webkit, is it superfluous to test for compatibility in both browsers if a webpage looks fine in one?
5
votes
6answers
680 views

How do I protect javascript files?

I know it's impossible to hide source code but, for example, if I have to link a JavaScript file from my CDN to a web page and I don't want the people to know the location and/or content of this ...
5
votes
4answers
86 views

What should be on the landing page of an open source project?

The reason for asking this question is to get a good idea about how best to present an open source project for my own projects. How can one best make a project attractive to potential new users and/or ...
5
votes
2answers
153 views

Reverse Engineer a web page

I wish to reverse engineer any web-page into a logical representation of the page. For example, if a web page has a menu, then I want a logical menu structure perhaps in XML. If the webpage has an ...
5
votes
5answers
1k views

Measuring Loading time of a web page (C#)

I would like to know if there is a simple way of measuring the time it takes from when you hit Enter, to the time where a web page is fully displayed/loaded. Would I need to use a Timer for this, or ...
5
votes
4answers
112 views

Professional Tips and Tricks

I'm trying to polish my web programming skills with the unobtrusive yet extremely helpful polish I find on many sites. Stackoverflow.com, for one. When I ask a question, the page submits the ...
5
votes
3answers
3k views

How to control screen-orientation for iPhone in web app

I have a very basic web page that uses flot to create a canvas based graph (similar to what SO uses for reputation graph). In the case of a PC display, it should simply output normally, with a the ...
5
votes
2answers
4k views

Connect to URL and dump webpage in Groovy

I would like to open a webpage from groovy, dump the specified webpage and eventually dump the webpage behind an anchor tag. Does anybody has some sample code for this?
5
votes
4answers
2k views

Detecting and accessing a usb device from within a webbrowser -i.e using a plugin

Is it possible through a plugin - activeX, Java or Flex to write a brower plugin that is able to detect an read a data stream from a USB device channel. I have done some research but have not found ...
4
votes
1answer
91 views

what counts as a “pageview” [closed]

My main index.html page consists of 2 parts (it is written in html & jquery/javascript): a fixed header that is always at the top of the page a content page that is loaded when a user clicks a ...
4
votes
2answers
181 views

C# How can I get server error from a URL?

We have a url and we need to check whether web page is active or not. We tried following code: WebResponse objResponse = null; WebRequest objRequest = HttpWebRequest.Create(URL); ...
4
votes
6answers
7k views

What is the fastest way to scrape HTML webpage in Android?

I need to extract information from an unstructured web page in Android. The information I want is embedded in a table that doesn't have an id. <table> ...
4
votes
4answers
3k views

JavaScript at bottom/top of web page?

I was just using the plugin "Yslow" for Mozilla Firefox, and it told me that I should put JavaScript at the bottom. I have heard this before but haven't really thought about it too much. Is there ...
4
votes
4answers
536 views

how to determine if webpage has been modified

I have snapshots of multiple webpages taken at 2 times. What is a reliable method to determine which webpages have been modified? I can't rely on something like an RSS feed, and I need to ignore ...
4
votes
6answers
6k views

How to get the content of a remote page with JavaScript?

I have a URL of a remote page from a different domain which I have to download, parse, and update DOM of the current page. I've found examples of doing this using new ActiveXObject("Msxml2.XMLHTTP"), ...
4
votes
10answers
2k views

Stop people from refreshing the page

Is there anyway for me to make it work so anyone who presses F5 or any refresh button will be moved to a different page, instead of it refreshing the page the user wants? Something like : If ...
4
votes
1answer
2k views

Library for Caching Web Pages on iPhone?

Is there a library or framework that I can use to cache web pages locally for offline viewing on iPhone? If not, what's the best strategy for doing so? Currently what I'm thinking of doing is ...
4
votes
2answers
132 views

Displaying data in a webpage from logged text files

I have multiple text files with logged data like this: 6/23/09 17:00 0.443 6/23/09 17:05 0.443 6/23/09 17:10 0.443 6/23/09 17:15 0.443 6/23/09 17:20 0.443 6/23/09 17:25 0.443 6/23/09 17:30 0.443 ...
4
votes
3answers
6k views

Open webpage and parse it using JavaScript

I know JavaScript can open a link in a new window but is it possible to open a webpage without opening it in a window or displaying it to the user? What I want to do is parse that webpage for some ...
3
votes
3answers
40 views

Display an applet in a webpage using HTML/JavaScript

I have very little experience with HTML and applets. I have tried several of the things I found online, but am unable to make my Java applet run in a web browser (it functions in eclipse). I have ...
3
votes
1answer
138 views

Web page caching using Ehcache

I am trying to make my web application faster by using caching of web pages for faster access next time so can anyone provide me guideline how to use Ehcache for the same?
3
votes
2answers
68 views

How does google do?

How does Google do the little animation that replace the Google logo every day? I know the whole world lost almost 5 million hours playing Pacman at work last year (but it was worth it :D). But I am ...
3
votes
2answers
97 views

Can I print HTML as it would be viewed in a web page without tags in python?

I want to print html to a document but I want it formatted as it would be viewed in a web page. I have the following code: from BeautifulSoup import BeautifulSoup, NavigableString html = """ ...
3
votes
1answer
321 views

How to load web page using didSelectRowAtIndexPath without leaving the app?

I am parsing RSS feeds and loading results into a table. When the user clicks on a story, they are taken to the web page. At the moment I am using: [[UIApplication sharedApplication] ...
3
votes
3answers
380 views

How to save a web page as image

i have a string with webpage source; how can i save it in byte[] as image?
3
votes
2answers
1k views

How to adapt website to user's Screen Resolution?

I'm designing my website by using a base of 1024x768 screen resolution. When you're looking at the website in the browser from a computer with a smaller/bigger screen resolution the website starts to ...
3
votes
2answers
56 views

Serving HTML Content

I'm in need of a way to serve either HTML or links to external webpages. Basically what needs to be done is we will have webpages, and then would like to give a user of our site a URL or piece of ...
3
votes
1answer
109 views

How to get a BATCH file executed from a web page?

I have a one line batch file that I want to call from a web page via a button what is the best way to achieve this? The BATCH File is as follows: c:\R\bin\Rscript.exe ...
3
votes
2answers
66 views

How can I have a JS script update a page for everyone viewing it?

I'm creating a web application that allows users to make changes through Javascript. There is not yet any AJAX involved, so those changes to the DOM are being made purely in the user's local browser. ...
3
votes
2answers
619 views

Extract Meta Keywords From Webpage?

I need to extract the meta keywords from a web page using Python. I was thinking that this could be done using urllib or urllib2, but I'm not sure. Anyone have any ideas? I am using Python 2.6 on ...
3
votes
8answers
254 views

List of external websites [closed]

I've seen several websites where there are pages that only contain a list of hyperlinks to useful resources for visitors. I'm renovating a website that has one of those listing pages. I am curious ...
3
votes
3answers
138 views

Is there a limit to the scroll length of a web page?

I have a client who is building a business application that will be used with IE8 only. One of the requirements is to display all of the data in a single page. I am anticipating this data table to be ...
3
votes
1answer
210 views

Is it possible to avoid page reload after accept of an activex object

I have a multi-page flow of webpages (jsp). After the user have done a lot of work i need to use an activex component, if not pressent on the machine the user is presented yellow bar at the top to ...
3
votes
6answers
191 views

How to manually create Friendly URLs? (PHP)

How to manually create Friendly URLs? (PHP) So I have created simple php file which echos requested string. Now it has form echo.php?string=bla+bla+bla&font=times I want to see it like ...
3
votes
4answers
392 views

How to design a webpage to be print friendly?

What are the right sizes for a webpage to be printed on A4 size paper? What other stuff should be considered? *inline CSS is preferred in this case Clarification: This web-page's only propose is to ...

1 2 3 4 5 11