What is OPML?
General Web-programming
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > General Web-programmingGo to page: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next »

  Top users: 
  Recent blog posts: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:
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.spiderwe­bwoman.com/resources­/
FrontPage Support: http://www.frontpag­emvps.com/




"Andre" <Andre@discussions.­microsoft.com> wrote in message
news:94CE5950-9CA1-­49FC-AE1F-603032EA50­06@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 ?


comment 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@discussio­ns.microsoft.com> wrote in message
news:E47482AE-4790-­43CB-8802-E45033E918­15@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


comment 6 answers | Add comment
Thursday, 10 September 2009
Topic awaiting moderation wholesale2wd 17:23:23
Tuesday, 23 December 2008
to create internet shopping site with frontpage 2003 Malik 17:45:04
 How to create internet shopping site
comment 1 answer | Add comment
Microsoft Expression at 50% Off Kathleen Anderson 03:46:16
 Found this at:
http://blogs.msdn.c­om/chkoenig/archive/­2008/12/19/microsoft­-expression-at-50-of­f.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.micros­oft.com/microsoft/de­sign/category/601

--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
Expression Web Resources: http://www.spiderwe­bwoman.com/xweb/
Expression Web Wiki: http://expression-w­eb-wiki.com/
FrontPage Resources: http://www.spiderwe­bwoman.com/resources­/
Please reply to the newsgroup for the benefit of others



comment 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


comment 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.


comment 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
comment 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.va­lue),
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 drawBOX(­ function:

newelement.attachEv­ent("change", chgDI(newelement.va­lue));
-OR-
newelement.setAttri­bute("onChange" , "chgDI(newelement.v­alue)");

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.va­lue), 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 drawBOX(­doit){
if (doit && drawBOXflag == 0) {
drawBOXflag = 1;
var insLOC = document.getElement­ById("beforeSUBMIT")­;
var newTEXT =
document.createElem­ent("p"); newTEXT.setAttribut­e("id","ackTxt");
newTEXT.appendChild­(document.createText­Node("Type your message and where
you want it sent"));
insLOC.parentNode.i­nsertBefore(newTEXT,­insLOC); var newelement =
document.createElem­ent("textarea"); newelement.setAttri­bute("id","ackBOX");­
newelement.setAttri­bute("rows","4"); newelement.setAttri­bute("name","txtAck"­);
newelement.setAttri­bute("cols","63");
newelement.setAttri­bute("value",AMessag­e); insLOC.parentNode.i­nsertBefore(neweleme­nt,insLOC); newelement.attachEv­ent("ohange",
chgDI(newelement.va­lue)); //Attempt to add Event Handler. - No Luck -
// newelement.setAttri­bute("onChange" , "chgDI(newelement.v­alue)");
}
else if (!doit && drawBOXflag == 1) {
var delTEXT = document.getElement­ById("ackTxt");
delTEXT.parentNode.­removeChild(delTEXT)­;
var delBOX = document.getElement­ById("ackBOX");
delBOX.parentNode.r­emoveChild(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?
comment 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?
comment 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!!
comment 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?

comment 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.ht­ml" 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/a­lbum/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






comment 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
comment 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.
comment 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.

comment 7 answers | Add comment
Publish web under file menu grayed out Bobco 00:47:48
 How do I remedy this?
comment 4 answer | Add comment

Add new topic:

How:  Register )
 
Login:   Password:   
Comments by: Premoderation:
Topic:
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > General Web-programmingGo to page: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | next »

see also:
switching datafiles that are used
Sysadmin trying to learn Oracle...help!
pass tests:
How Old Are You Psychologically?
see also:
...
admina al jabn

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .