Today — Friday, 12 March 2010
|
| Re: Blank lines in code Kathleen Anderson 17:42:41 |
| | Have you applied the Service Packs for FrontPage 2003?
--
~ Kathleen Anderson Microsoft MVP - FrontPage Spider Web Woman Designs web: http://www.spiderwebwoman.com/resources/ FrontPage Support: http://www.frontpagemvps.com/
"Andre" <Andre@discussions.microsoft.com> wrote in message news:94CE5950-9CA1-49FC-AE1F-603032EA5006@microsoft.com...>I noticed with a site I was building that after published some of the pages> load very slow. The page contained a form and one small image.> When I looked at the html code I noticed that from about line 95 there was> empty blank lines for 1,985,000 (thats right one million nine hundred > lines)> It took me about an hour to select and after I deleted them the page > loaded> fine. I then checked the dwt pages and some of them also had blank lines.>
What causes this ?
|
| | 2 answer | Add comment |
Tuesday, 12 January 2010
|
Topic awaiting moderation clothing 11:55:41 |
Saturday, 14 November 2009
|
| Re: Convert .exe to .html Is there any such software?? I know it ca. Murray 14:08:49 |
| | You want to convert a binary file with machine executable commands into a website?
My mind boggles at the notion. I am sure that no such thing can be done, which would probably explain why your search has been unsuccessful.
Maybe you could say what it is you are really trying to do - there could be an alternate method.
-- Murray
"Haaavvit" <Haaavvit@discussions.microsoft.com> wrote in message news:E47482AE-4790-43CB-8802-E45033E91815@microsoft.com...> I'm trying to upload an application (.exe) to my web site but it seems > they> have to download the program to use it. Is there a way of converting it > to> html so they can use it directly from the site and not downloading? I > have> been searching for hours now and can't find a thing.>
Many thanks in anticipation
|
| | 6 answers | Add comment |
Thursday, 10 September 2009
|
Topic awaiting moderation wholesale2wd 17:23:23 |
Tuesday, 23 December 2008
|
| Microsoft Expression at 50% Off Kathleen Anderson 03:46:16 |
| | Found this at: http://blogs.msdn.com/chkoenig/archive/2008/12/19/microsoft-expression-at-50-off.aspx
There is an offer going on right now for a 50% off discount on Microsoft Expression Studio, Expression Blend and Expression Web when you buy through the Microsoft Online Store at http://store.microsoft.com/microsoft/design/category/601
--
~ Kathleen Anderson Microsoft MVP - FrontPage Spider Web Woman Designs Expression Web Resources: http://www.spiderwebwoman.com/xweb/ Expression Web Wiki: http://expression-web-wiki.com/ FrontPage Resources: http://www.spiderwebwoman.com/resources/ Please reply to the newsgroup for the benefit of others
|
| | 9 answers | Add comment |
Sunday, 21 December 2008
|
| can't copy theme from imported web page Keith 23:28:07 |
| | I imported web page from templat site, now FrontPage won't let me copy it to other pages for some uniformity of my site, message is 'the operation is blocked related to the page having a theme on it'
|
| | Add comment |
|
| Can I use the Design page in FrontPage 2003 to create a CSS Jimnkim 00:26:56 |
| | I am planning to convert two existing FrontPage 200 sites to CSS
The instructions for creating a CSS page seem to indicate that I can only do this by writing the code. Is this correct? I understand that each page that would use the CSS has to be linked to it but can I use the WYSIWYG function to create the page and if so, how?
Thanks
|
| | 1 answer | Add comment |
Thursday, 18 December 2008
|
| Joining Data from multiple tables using DRW John P. 04:12:29 |
| | Is there any way to create a results page combining data from multiple tables in the same database?
John P.
|
| | 7 answers | Add comment |
Wednesday, 17 December 2008
|
| FTP publishing MikeR 02:32:07 |
| | Using FP 2002, how do I connect to my website using FTP? I need to publish from my host to my local box, and I can't get FP to do it.
Does publishing to my host carry the metadata like http publishing?
Thanks, Mike
|
| | 2 answer | Add comment |
Tuesday, 16 December 2008
|
| Problem with adding event handler by setAttribute Nonprofit Programmer 19:05:02 |
| | I have the below code. I am trying to add the function chgDI() as the handler for onChange event. However, the reference chgDI(newelement.value), if in parentheses, is not recognized as a function call. If parentheses are left out, it is called only when the drawBOX function is called, and not when the text area changes. Using addEvent results in a 'mismatch' error. Using setAttribute doesn't work either. What can I do?
CODE within drawBO function:
newelement.attachEvent("change", chgDI(newelement.value)); -OR- newelement.setAttribute("onChange" , "chgDI(newelement.value)");
I've tried both statements with and witout parentheses. No joy.
|
| | Add comment |
|
| adding an event to a dynamically added text area, event won't fire Nonprofit Programmer 07:36:02 |
| | nI have the below code. I am trying to add the function chgDI() as the handler for onChage event. However, the reference chgDI(newelement.value), if in parentheses, is not recognized as a function call. If parentheses are left out, it is called only when the drawBOX routine is called, and not when the text area changes. Using addEvent results in a 'mismatch' error. Using setAttribute doesn't work either. What can I do?
function drawBO doit){ if (doit && drawBOXflag == 0) { drawBOXflag = 1; var insLOC = document.getElementById("beforeSUBMIT"); var newTEXT = document.createElement("p"); newTEXT.setAttribute("id","ackTxt"); newTEXT.appendChild(document.createTextNode("Type your message and where you want it sent")); insLOC.parentNode.insertBefore(newTEXT,insLOC); var newelement = document.createElement("textarea"); newelement.setAttribute("id","ackBOX"); newelement.setAttribute("rows","4"); newelement.setAttribute("name","txtAck"); newelement.setAttribute("cols","63"); newelement.setAttribute("value",AMessage); insLOC.parentNode.insertBefore(newelement,insLOC); newelement.attachEvent("ohange", chgDI(newelement.value)); //Attempt to add Event Handler. - No Luck - // newelement.setAttribute("onChange" , "chgDI(newelement.value)"); } else if (!doit && drawBOXflag == 1) { var delTEXT = document.getElementById("ackTxt"); delTEXT.parentNode.removeChild(delTEXT); var delBOX = document.getElementById("ackBOX"); delBOX.parentNode.removeChild(delBOX); drawBOXflag = 0; } return }
function chgDI(DispTXT) { if (DispTXT !== "") { alert(DispTXT); } }
|
| | Add comment |
|
| Text scrolls over fixed image in IE7 & Firefox Tracy 03:13:57 |
| | I've used FP2003 for years with no problem. Now that I'm updating our site, I'm having problems. The site appears fine in IE6, but it IE7 & Firefox my text scrolls vertically over my background image. All my information is in a table with a fixed background image, and my text is in cells. So it shouldn't be moving at all. Can someone please help?
|
| | 7 answers | Add comment |
Monday, 15 December 2008
|
| Help with Frontpage 2003. I think its a simple question Jay R . 23:00:16 |
| | I have a created a contact form that once the submit button is entered, the form info goes to my email but the second page shows a Front Page Error. It looks like the problem is the location of the file.
When I go to file > properties > to edit the location, the location is incorrect. My problem is I can not change or edit the location, does anyone know how to do this. Thamnks in advance for your time?
|
| | 2 answer | Add comment |
Sunday, 14 December 2008
|
| Centering Website on all Monitors BillA 21:24:53 |
| | I am trying to be the Webmaster for our church. Our website works pretty well but the number one complaint that I get is how it appears on their screen. With all of the wide screen and high resolution monitors out there now. How do you make you website appear first of all in the middle of the screen on all monitors and can the text or font size change for different resolution.
thanks for any help, this dummy can use all he can get!!
|
| | 3 answer | Add comment |
|
| Problem with altering tab style Navigation with DWT Oldfiona 13:18:05 |
| | I hope someone can help. I’m trying to design a tab style web site with 4 different main sections in FrontPage 2003 (see www.bournespring.co.uk where I’ve uploaded the rough design)
I would like the navigation tab to be a different colour on the section being viewed e.g. when the ‘Livery Services’ and pages related are being viewed this tab remains brown and the others are blue. I thought if I set up 4 different DWT’s; one for each section it would do the trick but the trouble is that when I change the navigation tab colour on one page or DWT it changes the colour on all pages and DWT’s.
Is there any way round this?
|
| | 2 answer | Add comment |
Saturday, 13 December 2008
|
| Getting correct hyperlinks in a DWT Ed Sowell 02:10:38 |
| | I'd like a DWT than I can use to generate a page which has
<iframe src="album/index.html" width="1024" height="740"> Please use a browser that supports iframes </iframe>
in the Body section. Further, I want to put a copy of this page in many different folders in my Web and have it appear exactly that way in each place, since the targeted index.html file is always in the "album" subdirectory where the generated page will be. The problem is, whenever I put the generated page into a any folder other than the folder where the DWT file is FP will recalculate the link address. IOW, once the generated page is where I want it there will be:
<iframe src="../Templates/album/index.html" width="1024" height="740"> Please use a browser that supports iframes </iframe>
This happens no matter how I get the generated plage to the wanted folder, i.e., I get the same result if I created it in its final location or create it in the Template folder and move it to the final location.
Is there any way I can force FP to NOT recalculate the link when the generated page is moved?
TIA,
Ed
|
| | 3 answer | Add comment |
Friday, 12 December 2008
|
| Index.html - lower case i not saving correctly Nick 20:53:02 |
| | I'm having trouble with my navigation buttons not saving my homepage link as index.html. (lowercase i). When I click on the button's hyperlink properties, the name is saved as Index.html (with an uppercase I), which in turn does not find my correctly named index.html page. Even if I rename the link back to lowercase i, it just saves it with an uppercase I again. This happens on all my web pages, with their "Home" buttons.
Is there a simple solution to this, rather than wiping my site clean and starting all over again?
Any help would be appreciated!
Thank You
|
| | 2 answer | Add comment |
|
| IIS Tracking Zanstemic 03:47:38 |
| | I'm looking to track user activites while on a website. Does IIS have logging that can store user activity?
Any suggestions are appreciated.
|
| | 5 answers | Add comment |
Wednesday, 10 December 2008
|
| Changing page by timer Ed 20:50:02 |
| | I have a website and want to emphasize some major changes that have taken place in the event it represents. I want to open with a very simple page with just the changed information on it, with a counter that changes to the master website after 'x' time, or the user can change manually. I've seen this done many times.
Where can I learn to do this? Everything I search for gives me countdown timers and such.
Thanks for any help you can offer.
|
| | 7 answers | Add comment |
|