Posts Tagged ‘lt’
How do i center a google gadget i put on my site using dreamweaver cs3?
I built my site with dreamweaver cs3 and i added a bandwidth test google gadget. It shows up perfectly but i can not get it to center. anyone know how i can do this? This is how i have it written.
<p><script src="http://www.gmodules.com/ig/ifr?url=http://hosting.gmodules.com/ig/gadgets/file/103534220535816043845/speedtest.xml&synd=open&w=350&h=305&title=Speed+Test&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js"></script> </p>
How do i delete the 2nd iteration of an XML tag in a file?
Ex.
<Book>
<Info> blah blah</Info>
</Book>
<!– delete from "<Book .* </Book>" –>
<Book>
<Info />
<Info2 />
</Book>
I appreciate your help!!
Yes, i have Notepad++
Can PHP be used in RSS XML files? (E.g. a varible as the description?
Can php be used in a xml file for displaying RSS feeds?
For example:
$variable = "Description text"
<description><php? echo $variable ?></description>
Would this work? using a varible to display the text on the feeds?
If not is there another way to use it?
How to read & write into Xml file using VBA of Excel 2000?
How to read & write into Xml file using VBA of Excel 2000.
<Config>
<UserSetting Id=’11′>
<UserName>abc</UserName>
<Pass>welcome</Pass>
</UserSetting>
<UserSetting Id=’12′>
<UserName>abc1</UserName>
<Pass>welcome</Pass>
</UserSetting>
</Config>
is it possible to add a link inside of a xml node? if so, how?
for instance… how would you do it so you could link someone within a xml node… ex:
<wrapper><a href="">ddd</a></wrapper>
How can I store varying lists of elements for each item in my XML file?
In this example I’m trying to store all the invitees for various parties… Each party will have a different number of invitees of course…
<party>
<description>Birthday Party</description>
<guest>James</guest>
<guest>Jessica</guest>
<guest>Rob</guest>
</party>
<party>
<description>Housewarming Party</description>
<guest>Peter</guest>
<guest>James</guest>
</party>
Does this work? Is there a better way to list guests? I’m feeding this file into a flash file.
DTDS When creating a DTD with my xml I keep getting an error. Are both files suppose to be kept in the same?
folder? If they are, then I am doing that. This is what I am getting:
The system cannot locate the resource specified. Error processing resource ‘lab02.dtd’. Error processing resource ‘file://…
<!DOCTYPE gradedEvents SYSTEM "lab02.dtd">
Can any one explain me how to give markup in a style sheet for numbering list items in an xml document?
I want to give each new item in a continuous numbering format
I tried to give numbering by giving <xsl:number> and the coresspondin attribute but when I open my xml document in IE its showing NAMESPACE error
I use following W3C path
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
how to link xml page to my below source code?
can anybody tell me how to link xml file to this javascript
function loadForum(forumID)
{alert(forumID);
createForum(forumID);
// load XML
// load Data in the Container
}function createForum(forumID)
{var fCDIV = document.createElement(‘DIV’);
fCDIV.setAttribute(‘id’, forumID);
fCDIV.setAttribute(‘className’, ‘forumContainer’);
var fTDIV = document.createElement(‘DIV’);
fTDIV.setAttribute(‘id’, forumID+’_Title’);
fTDIV.setAttribute(‘className’, ‘forumTitle’);
var fDDIV = document.createElement(‘DIV’);
fDDIV.setAttribute(‘id’, forumID+’_Display’);
fDDIV.setAttribute(‘className’, ‘forumDisplay’);
fDDIV.innerHTML = ‘<DIV class="forumTopics"></DIV><DIV class="forumThreads"></DIV>’;
var fTBDIV = document.createElement(‘DIV’);
fTBDIV.setAttribute(‘id’, forumID+’_toolBar’);
fTBDIV.setAttribute(‘className’, ‘forumToolBar’);
fCDIV.appendChild(fTDIV);
fCDIV.appendChild(fDDIV);
fCDIV.appendChild(fTBDIV);
document.body.appendChild(fCDIV);}