web

What are the best web design sites?

Hello! I just wanted to know what are the best websites about web design? I'm looking for websites about either web design, CSS, Photoshop for the web or web development in general (like new web technologies). ...

Any Python Script to Save Websites Like Firefox?

I am tired of clicking "File" and then "Save Page As" in Firefox when I want to save some websites. Is there any script to do this in Python? I would like to save the pictures and css files so that when I read it offline, it looks normal. ...

Best way to make Linux Web Services?

Hello. I have a server that is running Ubuntu Linux Server Edition. I once had a Windows Server and it is easy to create web services using ASP.net on Windows. Linux on the other hand does support ASP.net using Mono, but is isn't as full featured as Windows. So what would be the best way to create xml web services on a linux server box? ...

Python Web-based Bot

I am trying to write a Python-based Web Bot that can read and interpret an HTML page, then execute an onClick function and receive the resulting new HTML page. I can already read the HTML page and I can determine the functions to be called by the onClick command, but I have no idea how to execute those functions or how to receive the res...

How can I use System.Web.Caching.Cache in a Console application?

Context: .Net 3.5, C# I'd like to have caching mechanism in my Console application. Instead of re-inventing the wheel, I'd like to use System.Web.Caching.Cache (and that's a final decision, I can't use other caching framework, don't ask why). However, it looks like System.Web.Caching.Cache is supposed to run only in a valid HTTP context....

Why not always use enctype="multipart/form-data"?

When building HTML forms why do we not always use enctype="multipart/form-data"? ...

TWAIN Browser Plugin

Does anyone know of a good TWAIN browser plugin to scan images and send to a web application? If it includes features such as deskew it would be even better. Thanks! ...

Whats a good API for generating reports for a java web application?

I have a J2EE application that has a lot of reports, the situation now is the following: Report filters' values are sent to the application over DWR mainly, the data are retrieved from Oracle DB throw DB procedures and returned back to the client. However, some customization is required every now and then (new data filters, columns, or...

Force PNG to download instead of opening in browser with IIS

I need to be able to have a subdirectory of images all PNG's to be downloaded instead of opened in the browser window. I am using IIS for the web server. Is there a way to force a PNG to be downloadable? ...

how to construct web UI in a top-down way?

Has anyone done this ? If so,please share your experience:) ...

Versioned File System like web interface

Hi ! I'm trying to find a free software that would provide a web interface to a file system (so you can add / remove files / directories, possibly edit them). If possible, it should handle versioning (only simple things needed : back to previous versions), and user management. Can you point me to anything like that ? thanks Update1 : ...

IUI way to display invalid password

I'm developing a mobile site using IUI. It's a framework that makes web pages look like IPhone dialogs. I have a tree-like catalog and on a certain level the page asks for a password to proceed. I'm not quite used to IPhone and failed to find a native dialog with a password check that can fail. What is the "IPhonic" way to handle an ...

can a web parser differentiate between static and dynamic text?

can a web parser differentiate between static and dynamic text on a webpage? for example there is a string on a webpage Hello "Fantastic Four" In this "Hello" is a static data and "Fantastic Four" is a dynamic data (say being populated form a database value) Is it possible for web parser to detect whcih is a static and dynamic content?...

What is the best metaphor of AND and OR for searching?

As programmers, we are all aware of the differences between AND and OR (junction and union). I'm building a website that list properties and I'm really struggling on the search part. I want the user to be able to search using checkbox, but some criteria make more sense using AND and other using OR. For example, show properties that hav...

Does read-only file system access guarantee a write access?

Hello, I am developing a web application and I am wondering if someone has a full read-only access to my filesystem, can this person (assuming that he is aware of everything necessary) have a write access to the system? For example, if you have a PHP script that outputs contents of any files on the server - will someone really be able ...

Expose my application data and processed data as Web Service.

Assume I have a application that stores data,gets data and processes data and stores them in a database (which can be any).Say I want to expose my data as Web Services so that other systems can get the data they need for processing. Q1.Is there any standards to follow? I can create Web Services in C#,so are the enough to say or claim th...

Why my OpenX folder have been auto chmodded to 770 many times???

How can I stop it from auto chmodding? ,or are there any apps that help tracking chmodding on the host? Thanks. ...

Struts 1.x: Form isn't shown

Hi! I have a form like this, in a .jsp page (using Struts + Tiles): <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %> <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %> <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" p...

Page contruction times in ASP.NET MVC and WebForms

I want to display at the bottom of my pages a simple "built in x.yz seconds" text, to easily check various options. (some pages are built using parameters entered in a previous page by a "regular" user, who would like too to see the results of his decisions) I know I can use traces in asp.net, but it's not very user-friendly, and I fear...

How to add hooks in twisted.web (or twisted.web2)?

How can I add a hook before and after processing a request on twisted.web (twisted.web2 is fine too)? The equivalent of webpy's: app = web.application(urls, globals()) app.add_processor(web.loadhook(my_attach_callback)) app.add_processor(web.unloadhook(my_detach_callback)) Thanks! ...