web

Building Web Content and Word Documents

What is the best tool for breaking down Word docs into a series of strong, em, a, br, and p tags. I'd like to drop all other info. The built-in Word 2007 "Filtered" HTML "Save As" doesn't work that well. Other ideas? ...

best practice for developing webpage for mobile phone

Hello, I would like to know how I can make a webpage that will look good in most mobile phones. For making normal webpages, I use dreamweaver cs3. I don´t really want to use emulators unless I have too. Can I not just center everything in the middle, with auto margins on both sides. When I am looking at the pages that I have made sofar...

How do I include an icon on a Stripes button with jQuery

I am using Stripes and jQuery along with a generated jQuery UI theme. I want to embed a <stripes:form> in a div, then style the <stripes:button> for the submit with one of the icons from the theme. This Works: (but obviously doesn't tie in to Stripes) <button id="save" class="ui-state-default ui-corner-all"> <span class="ui-icon u...

Static Access to HashMap/Array?

Here's an example of a static method that is used in a web application. As you can see, the String[] allergensArr gets insantiated each time that this method is called. It's threadsafe since it's in a static method but it's an expensive call. What are some other ways that the allergensArr[] can be used so that it's not instantiat...

Change spaces to -

I am inserting Alias field for my db called $alias how do I code (I am using php for mysql insert) to remove all spaces and replace space with "-" (trying to change it to "weburl format" ie removing spaces) Thanks ...

NPAPI: is there a way to generate an event to JS?

Is there a way to have an NPAPI plugin generate an event on the host page side? i.e. the page that contains the <embed> tag instantiating the plugin. Disclaimer: I am an NPAPI newbie. ...

IE7 Displays Whitespace afer png

I have a div that contains a PNG background-image. After the div is displayed on my web page in IE7, there is a whitespace between the div and footer. All other browsers (incl. IE8) display the PNG correctly. Any ideas on a resolution would be appreciated? ...

Available design solutions for a server-client protocol in a web environment

Hi, Let's say I have a server running as a service, I have a client that connects to the server exchanging information. This will work nicely on a "keep-a-live" application (a desktop application, another service etc.), but what are my option in a web environment? Create the client on each web call and connect to the server retrieving...

AD Authentication with Web Service

Hi All, I am trying to develop a web service which will be consumed by various clients on different platforms. I want to authenticate this web service such that the users who call my web service should be authenticated based on NT account they are logged in. My Web service will be hosted in the same domain as my users are, ie my company...

Embed quicktime movie. a "Play again" button at the end?

Forgive me if this was a silly question that I missed in the documentation, but I have no idea how this is done (having a "replay" button at the end of a video). I am guessing it's a callback to a javascript function when the movie ends? And load some new markup (with the replay button) in the function. Any thoughts? ...

Introducing a Java stats package to an application?

I currently have a web application and wish to add certain statistics to the site. These statistics would be in addition to web statistics. I can easily log certain events to a file via log4j. Is there something I can add that will investigate the data and format it in a human readable way (chart or table)? The application is running i...

how to convert my vb app to an activex web service

I made an app in VB that I want to turn into a web service. I've been told I can create a web service from VB.NET but how? Can I convert my app into a ASP.NET app or do I have to re-write it? Can I turn my app into an Active X control and create a active x web service? ...

VB app to web service

I know very little about web service but I assumed it would be the solution I was looking for. Basically I made an application in VB that I want to be ubiquitous for a lack of a better word. I need it to receive requests from multiple users and respond all at once. I was told "technically if you write a webservice you can provide as many...

How do I embed a web browser into my Cocoa application?

I need to learn how to add a web browser into a cocoa application. (Mac) ...

Joomla web service module

I am looking for a Joomla web service module to allow users to create a user login and add posts and comments. I am writing a standalone mobile version of my joomla site and I need it to call these web service functions. ...

Is there a tool to draw geometry shapes programatically?

Like rounded corner for web pages, I want to draw it by setting the parameters and programatically. EDIT It should be able to generate image like ...

What kind of web effects are out there?

Like rounded corner,any more? ...

How to integrate SQL Server 2005 Express Edition to Visual Web Developer 2008 Express Edition

Hi. I use Visual Web Developer Express Edition 2008 and SQL Server 2008 Express edition. I have finished a project recently. But many of hosting firms don't have SQL Server 2008. So i decided to uninstall SQL Server 2008 and install SQL Server 2005. Then I would reproduce my database. I uninstalled SQL Server 2008, installed SQL Server 2...

Address control for web based email application

I am looking for a control to add email addresses for a mailing application. I am not sure what it is called but I saw something similar to it at staples "Share This" link. It should allow to add email address by typing or delete it by clicking the X on its right. Could you please let me know if there are any existing controls for it or ...

HTTP status 407: Proxy authentication required Error when calling web service

I have spent two hours on this error "HTTP status 407: Proxy authentication required Error " when calling a web service, my code is like following WebProxy oWebProxy = new System.Net.WebProxy(ProxyServer, ProxyPort); oWebProxy.Credentials = new NetworkCredential(ProxyUser,ProxyPassword,ProxyDomain); o...