html

convert html into MSWord

Hello everyone, I am looking for sample code which convert html into MSWord. C# code appreciated. Html input is as a string whose content is html document, I want to learn how to use .Net Word (Office) SDK to do the conversion. thanks in advance, George ...

JSTL tag not translate in HTML.

Hi, My imports : xmlns:c="http://java.sun.com/jstl/core" xmlns:fmt="http://java.sun.com/jsp/jstl/fmt" My JSTL Code : <h:outputLabel value="YESS" > <fmt:formatNumber value="0.25" type="percent"></fmt:formatNumber> HTML generated code: <label>YESS</label> <fmt:formatNumber value="0.25" type="percent"></fmt:formatNumbe...

Passing strange text as variables via post method in php

I have an odd problem. Our company collects data and we use a HORRIBLE piece of software to handle all of our phone interviewing. It uses binary files instead of SQL and uses no compression. As of right now we have to manually run all reports for the clients. I am working on building a web interface to our data and common reports. Now I...

HTML encoding of a string pasted from Word

See http://pilot.whatpub.org/Guide/002000/Pub002687.htm and have a look at the source. The text in the description ("Refurbished in 2005...") has been pasted from a Word document into a System.Web.UI.WebControls.TextBox and then saved into a database as unicode. It's obviously got some non-ASCII characters in there that IE interprets s...

Python regular expression for multiple tags

Hi, I would like to know how to retrieve all results from each <p> tag. import re htmlText = '<p data="5" size="4">item1</p><p size="4">item2</p><p size="4">item3</p>' print re.match('<p[^>]*size="[0-9]">(.*?)</p>', htmlText).groups() result: ('item1', ) what I need: ('item1', 'item2', 'item3') ...

fullscreen layout

Having a world of trouble with a fullscreen layout. Either a table or css based solution would be appreciated. The goal is to expand to the viewing screen, with the "nav" fixed by width and "top" fixed by height, ideally without javascript. The code below works until the "content" fills up. When that happens it needs to scroll. However,...

CSS Position Different in FF and IE

I am trying to position some elements on a page at absolute positions. I used the following test code (I replaced the <> with [] to get through the HTML cleaner): <body> <div style="position=absolute; top=100px; left=100px"> HELLO 100,100</div> <div style="position=absolute; top=200px; left=100px"> HELLO 200,100</div> <div style="...

Son of Suckerfish CSS Menu - Top Level Menu staying active on Sub Menu Hover

I'm after a way to keep a top level menu item on it's hovered or active state when I'm hovering on that menu items sub menu. An example can be found here: http://marketplace.prettypollution.com - Hover over 'News' menu item (BG will be dark) then navigate to the Sub Menu to appears - 'News' item will change back to it's normal state. ...

IE8 causing FILE input entry to be blank via SendKeys

Application: HTA (therefore IE) This is an application that uses SendKeys to populate a FILE input field. Issue: File is never uploaded. Description: An offscreen form (invisible to user) uploads a file to the server. The file input is entered via SendKeys (javascript). Appears to be isolated to when IE8 is installed. Does anyo...

jQuery: how can I control a div's opacity when hovering over another div?

Hello everyone. I am currently working on my portfolio website which uses a very simple navigation. However what I want to do is have the drop shadow beneath the type become stronger (read: higher opacity/ darker) when the type is being hovered on. Right now my code looks as follows and does not generate any errors but simply does not ...

convert html document into PDF using C#

Hello everyone, I have html document as input (as C# string), and I want to convert to PDF document keeping the html document format/style as much as possible using C#. Any reference samples? I prefer to use free or open source or Microsoft built-in library to convert to PDF. thanks in advance, George ...

HTML pop-up over flex

Hello How I can show the html pop-up over the Flex application with no changing the wmode of the flex object? Thanks ...

Show Additional Content Based on Selection

Is this also the Risk Address: <select name="InsuredSALicense2" id="InsuredSALicense2"> <option>Please Select</option> <option>Yes</option> <option>No</option> </select> If the answer here is "No" then a hidden drop down must be created. If No, Please give details: <textarea name="InsuredOther License2" id="InsuredOt...

How to add 1 pure html in another html.

I am having 1 pure html page for ex. sample.html. I need to include this html into another pure html for ex.Orginal.html.How to do this? I am having a header image in my sample.html.It should come at the top of the Orginal.html page. ...

Problems with dynamically loading external js files on a onload event

I'm trying to get lightbox2 working with my site, http://www.therussianfrostfarmers.com/ , however i seem to be having a problem with conflicting external js files. I'm not entirely sure i know where the problem is with this code, but i believe its got todo with how the onload events are called. the blog content on the homepage is loaded...

What is the best ASP.NET PDF solution for converting XHTML markup with CSS support?

I have looked for a good solution for rendering a PDF based on a web page / HTML string, that can also keep the CSS styling. Does anyone know of any good solutions for this? Thanks in advance. ...

How to CSS a two column list of items?

I need to display a two column list of items according to the following rules: Container for the columns has fluid width Width of both columns needs to be equal Items are dynamically rendered and at least one will be displayed Item ordering needs to flow down the left column first, then the right Items need to line up evenly across the...

I need help with ibox,lightbox and links issues

I chose ibox lightbox for my site. it has been working fine but i need to open a link in the current lightbox but to close the current lightbox first and open the link in a new light box. any ideas??? Here's the link for ibox http://www.ibegin.com/labs/ibox ...

replace document in IE modal dialog

Browser : IE6/IE7. I want to load a new document into my html modal dialog, either via a form target or a javascript function. <html> <!-- quirks mode --> <head> <script> function openModal(url) { if(window.showModalDialog) showModalDialog(url); else { try { netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWr...

html form enctype

In HTML forms containg file uploads, enctype="multipart/form-data" attribute has to be set. This much I know. But why? What exactly does it change? How does it differ from application/x-www-form-urlencoded? ...