webpage

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 javascript to insert into their own page, which will then display our HTML on their page upon load. Can somebody please guide me in the right ...

Grab html code by entering username and password on a webpage on iPhone

Im trying to grab a HTML source code from a webpage which needs user to login with username and password, the code are all done in the back end, i can not use "?username=xx&pw=xxx" to get the html code. There are many apps that does this kind of things, such as getting usage from a phone provider or view bills. I would like to know how...

How do I retrieve the HTML of a webpage in C#?

Possible Duplicate: How can I download HTML source in C# I want the source HTML of the webpage so I can parse it in my C# program. ...

Using Drupal 7 or developing a new system: What's better for a website relaunch with a community of 15.000 users?

Hi, I have to make a decision for our (eXma german) community webpage. We will relauching it with a new system. There are two sites: The first is to develop a whole new system on e.g. Django and Python. The second is to use the new Drupal 7. Personally I have a lot more experiences with Drupal 6 and now since I'm testing Drupal 7 ...

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 developers? Clearly projects vary in nature and scope so when answering it may be necessary to qualify any suggestions which are contingen...

Website Optimization Reducing Img Object Requests

I'm on a quest to reduce my very bloated home page application in development. I've optimized the CSS and JS requests using a server size combine/stitcher and minimizer. I'm now at the point where I have an image carousel rotating 15 images as a magazine style layout. In addition there are non-carousel spots with a total of 8 objects. ...

Can I detect cpu type and speed, and/or amount of ram a computer has from a web page (javascript hopefully)?

Can I detect cpu type and speed, and/or amount of ram a computer has from a web page (javascript hopefully)? ...

How to detect whether web page content is different from cached version

Hi guys As you know checking process of web pages content is a little different from static pages or personal files on our machines because content of Dynamic web pages are changed on each request. So if we are going to use checksums to identifying changes, We'll fail! very simple example is when site owner are use Google Ads on him webs...

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); objRequest.Method = "HEAD"; try { objResponse = objRequest.GetResponse(); objResponse.Close(); ...

Simple-as-possible task schedule to call web page

Hi, I have a web page on a which does some database updates (e.g. http://www.mysite.com/updates.asp). I want this page to be called automatically each day at 09:00. I know how to schedule a task in IIS, but the process of scheduling a task requires that I select a programme to operate the task. So I'm thinking perhaps I need to make ...

Test if webpage is responding via php

I'm trying to build a basic "status" page using php that will tell my users if various services (webpages we use) are at least serving up pages (which isn't 100% guarantee of working but its pretty good indicator) what i would like to do is something like www.domainname.com/mediawiki/index.php and make sure that returns the page or not...

Aspx file and page inheritance

Hi, I have a base page called let's say Login.aspx with Login.aspx.cs code behind. Now...I would like to derive page from that page for several specyfic customers. Basically nothing changes in layout (aspx file), the only think is difference in handling Page_Load event. However when I access my derived login page LoginClientName.aspx n...

Saving a web page and externally linked assets as an independent static resource

Hi All, We have a requirement to cache web pages as accurately as possible, so that we can go back and view a version of a page at any previous point in time. We'd like to be able to view the page as it really was - with the right css, javascript, images etc. Are there any OS libraries (any language) that will fetch a page, download al...

In Internet Explorer 7 When clicking on a link on web page it goes no where but the page turns white

Hi, I am currently in the process of realigning my employers website. I've noticed a strange error while working on my development environment where by when I click on a link, the browser will not go to the requested URL instead the page turns white with a few elements still existing on the page. If I then click anywhere else on the p...

Get a page's last modified date using Java

Is there a standard way to tell when a page was last modified? Currently I am doing this: URLConnection uCon = url.openConnection(); uCon.setConnectTimeout(5000); // 5 seconds String lastMod = uCon.getHeaderField("Last-Modified"); System.out.println("last mod: "+lastMod); However it looks like some sites do not have a Last-Modifie...

How do they make real time data live on a web page?

How do they do this? I would like to have web pages with data fields that change in real time as a person views the web page. Here is an example: link text How do they do this? Jquery? PHP? I need to connect my field data to mySQL database. Erik ...

protect webpage with question.

i want to share something with a specific group of people. the way i want to do it is: before the page is loaded , i prompt a question to the viewer , if the answer is right , then the page is loaded, if the answer is wrong , the user is turn to the warning page.(i want to avoid the registration process, a specific question is ok) b...