how to embed player into web page?
Hi guys, I want to embed MPC player into web page, any samples? MPC player I mean => http://sourceforge.net/projects/guliverkli/ thanks in advance, George ...
Hi guys, I want to embed MPC player into web page, any samples? MPC player I mean => http://sourceforge.net/projects/guliverkli/ thanks in advance, George ...
I have a custom control I built that contains a list of items to be selected. I was concerned that these items would run together seeing as how there can be many different types of actions in this list. Create Edit View So I made the ability to separate these into groups by using a horizontal rule. Someone I work with thinks that h...
I am working with a simple table-based layout that uses iFrames as depicted in the example below. This code is rendering well in all modern browsers. The iFrames are usually filled with long tables of data, but there is no odd behavior or clipping. My concern is that it LOOKS like a really bad hack to me. Table-based layout evils a...
I have an HTML layout based on tabs (say 5). In each tab I load an iframe. The iframe contents are variations of one another that the user can compare by switching tabs. How can I, in javascript, synchronize the scrolling of all iframes vertically and horizontally? In other words, scrolling in one iframe should scroll by the same amount...
I'm trying to regexp a line from a webpage. The line is as follows: <tr><td width=60 bgcolor='#ffffcc'><b>random Value</b></td><td align=center width=80> This is what I tried, but it doesn't seem to work, can anyone help me out? 'htmlbody' contains the html page and no, I did not forget to import 're'. reg = re.compile("<tr><td width...
I'm needing to use a different stylesheet for IE, and I'm wondering about which stylesheet will take control. For example, I'll use this code in the <head>: <link rel="stylesheet" type="text/css" href="styles/style.css" /> <!--[if IE]><link rel="stylesheet" type="text/css" href="styles/ie.css" /><![endif]--> Then will I need to use !...
Am using django and am implementing WMD on my site, am just wondering how do i convert the markdown syntax to HTML for display purposes, is there some sort of function i should call to do this conversion? What is the best way to handle markdown ie. do i save the markdown as is to the database then parse it when displaying it or should i...
Although I'm sure it's possible I cannot see how I would be able to do the following. Using .htaccess to point the html errors to a single error handling page (this bit not a a problem). That page then checks what the error code actually was (404, 500 etc.) and displays a message according to each one. I am trying to do it in a PHP en...
Hi, I have a webpage with the following div's. <div id="main"> <div id=left></div> <div id=right></div> </div> As the body of the page is background color blue and assume div left and div right are white. when the content of say right div reaches the height of div main, div main does not expand so it looks odd. How do I get...
I´m using ExpertPDF (library for .NET C#) for converting HTML to PDF and my problem is that it takes a lot of time to do this. Are there any customizations that will improve the conversion? The HTML-page contains table-data with just a few images, so it is not that complex. Have anyone else ever experienced this problem, or do you re...
Hi i get the value in javascript from text box. but, value is not coming after white space For example, job : <input type="text" name="txtJob" value="software engineer"> if i take this value in javascript, i am getting only "software". i am using script like this: var jobValue = document.getElementById('txtJob').value how to ge...
I am looking for an easy to use WYSIWYG athoring tool that lets me build a complete website that consists of multiple connected static html pages. Actually something like Frontpage would be exactly what I need. I can define menus, contact forms, design the layout and define how the sites are linked to each other. But frontpage seems to b...
I am writing a Windows application which uses SMTP service to send email. I want to embed few dynamically created images to the Email content. How can I do this in .NET?. My format of email is HTML. I don't want to host my image to a photo hosting service. I don't want to send it as attachment. ...
I have created a java letter game applet using netbeans 6.0 which also has a Microsoft Access Database for the High Scores. I want to upload it into a webpage (like how its done on miniclip facebook etc) I'd like to know how it could be done ...
Hello, I'm wondering if the following can be done. I have a list of 'expenses' that I'm displaying in a table. 4 columns - amount, date, where, and what. I was thinking I'd like to make each clickable via jQuery which would expand that particular expense, inline, to show a more detailed description. What I'm trying to do is, on click...
How do I access data from html in asp.net in the .cs (code behind) file? in .aspx page I have <tr> <td>Username:</td><td><input id="username" type="text" /></td> </tr> <tr> <td>Password:</td><td><input id="password" type="password" /></td> </tr> ...
Is there any available C++ (or maybe C) function/class/library with only purpose to sanitize a string that might contain HTML? I find a lot of source code for sanitizing in C# or other languages more used in web application but nothing in C++. I'll try to implement my own function if I don't find any available but I think an heavily t...
I have two divs like so <div id="parent" style="width:100px:overflow:hidden;"> <div id="child"> tooooooooooooooooooooo much content to fit in parent </div> </div> I'm dynamically updating the content of child and scrolling it using Jquery. I would like to be able to find how wide the child is so I know when to stop scro...
Need some advice on creating a floating menu that behaves very similar to what is used on the apple website shopping cart. I've seen some scripts that do something like this (and we've tried one) but they tend to "lag" behind the movement while apple's version gives the appearance of being stationary. A jQuery solution would be preferabl...
Hi, If have a field in my database with crlf's how do I preserve that in HTML?? Is there a standard way of doing this?? Malcolm EDIT: I am actually doing an MVC app if that hepls. ...